"select * from \"" + superTable.getName() + "\" where \"station_code\" = \'" + station_code + "\' and \"type_code\" = \'" + type_code + "\'";什么意思
时间: 2023-05-22 19:01:19 浏览: 60
使用DataTable.Select 方法时,特殊字符的转义方法分享
这是一个 SQL 查询语句,意思是从名为 superTable 的表中选择所有行,其中 "station_code" 列的值等于 station_code 变量的值,且 "type_code" 列的值等于 type_code 变量的值。
阅读全文