C#里 string strSql = "select * from Student1 where StudentNo = ✀num✀ "; num是个string类型的变量

为什么我吧NUM改成改成相应的学号就有结果,但是用num就不行?
2025-01-21 06:23:24
推荐回答(1个)
回答1:

string strSql = "select * from Student1 where StudentNo = '"+num+"' "
这样就可以了。