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

2024年11月17日 23:27
有2个网友回答
网友(1):

select * from 表A
where a < 3

网友(2):

select * from A where a<3;