时间:2021-07-01 10:21:17 帮助过:12人阅读
假设不需要动态传参数的时,语句为:select * from stuDB where SID =‘1409044101‘;
进行如下步骤:
1. select * from stuDB where SID = ‘ ‘; 然后在‘ ‘ 中添加 " "
2. select * from stuDb where SID = ‘ " " ‘; 然后在 " " 中添加 + + ,两个+号
3. select * from stuDB where SID = ‘ "++ " ‘ ; 然后在 ++ 中添加 要动态传入的字符串
4. select *from stuDB where SID = ‘ " +stuId+ " ‘; 然后把语句 复制到 String sql = " "; 中的引号中
SQL语句动态传入参数
标签:字符 strong from 字符串 bsp 数据库 语句 ring gpo