Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在gridview中获取那些完成= 0的数据
我写了这个查询
select * from tbl where done=0
但我从数据库中获取所有数据
我有一个例子:
SELECT * FROM `bat` WHERE `b_runs`= 0;
在这里,您可能必须更改列的数据类型。
它适用于INT数据类型。
INT
或者你可以使用:
SELECT * FROM `bat` WHERE `b_runs`LIKE '0' ;
如果我没记错的话;done 是保留字。 尝试以下操作:
select * from tbl where [done]=0