查询语句
select *(要查找的内容) from table(表名)
逻辑运算符
--and 与--or 或
--not 取反
--in 包含
select *(要查找的内容) from table(表名) where * and *
select *(要查找的内容) from table(表名) where * or *
select *(要查找的内容) from table(表名) where * in(arr)
比较运算符
-- =等于-- >大于
-- <小于
-- <=小于等于
-- >= 大于等于
-- !=不等于
-- <>不等于
select *(要查找的内容) from table(表名) where *=value
select *(要查找的内容) from table(表名) where * <> value
标签:语句,常用,--,MySql,查找,表名,table,where,select
From: https://www.cnblogs.com/hui-xiang/p/18514351