1.使用select进行单表的查询
select*from 表名 会查询所有元素
select 列名,列名 from 表名 会查询所在列的元素
select distinct 列名 from 表名;
会去除重复元素
添加where字句来限定查询目标
select*from student where name not in(‘元素’,'元素');
where 列名 not in(‘’,‘’);排除部分行
查询条件:
一般的比较运算符:> < >= <= !=
是否在集合中:in, not in
字符模糊匹配:like,not like
多重条件链接查询:and,or,not
模糊搜索的时候一定注意select * from 表名 where 列名 like'XX'(%加哪,那就能加更多元素)