请问select语句中等是什么意思

来源:百度知道 编辑:UC知道 时间:2024/06/21 10:20:42
select id from table where no =? 比如上面的这个句子

where表示条件,no是列名,“=”后面加具体的值。
例如你在“=”后面填了 1, select id from table where no =1 就表示 查找 no 这一列的值为 1 的 id。

查询table表中no字段为?的数据,只筛选出id字段!

where column = ? 表示等值比较

楼主是想说这个?
“select id from table where no = 1”?

那就是表示符合条件的意思