SQL 我想查找数据库中某个字段里,小于某一值的所有记录

2024-11-17 23:27:29
推荐回答(2个)
回答1:

select * from 表A
where a < 3

回答2:

select * from A where a<3;