当前位置: 代码迷 >> Sql Server >> 请问:bat等待用户输入参数并传给sql脚本
  详细解决方案

请问:bat等待用户输入参数并传给sql脚本

热度:69   发布时间:2016-04-27 15:00:30.0
请教:bat等待用户输入参数并传给sql脚本
我想写一个bat 要求用户输入参数,并把输入的参数传递给sql脚本

以下是sql脚本内容:
select id,name from userA where id in (参数1) and name like '参数2' 


请高手指教

------解决方案--------------------
select.bat



osql -U用户名 -P密码 -q "select id,name from userA where id in (%1) and name like '%2' "
------解决方案--------------------
3楼的,可以输入参数,但是看不到结果呢??
  相关解决方案