怎么用批处理*.bat 执行文件目录下面的SQL语句脚本? 为什么我双击*.bat...
发布网友
发布时间:2024-10-24 02:10
我来回答
共1个回答
热心网友
时间:2024-10-27 04:38
@echo off
set /p id=请输入product_id
echo select product_id,name,price from products where product_id=%id%;>d:\test.sql
sqlplus "scott/tiger@test" @d:\test.sql
del d:\test.sql