NetBlog主题

SQL查询语句以及模糊查询
数据库

SQL查询语句以及模糊查询

5656

select * from 表 where 字段>=20 and 字段<=30 -- 以下功能和上面相同语句 select * from 表 where 字段 between 20 and 30 -------------------------------------------------- select * from 表 where 字段=3 or 字段=4 or 字段=5 --以下功能和上面相同语句 系统编…