mysql查询表的内容_mysql查询表内容
一,說明:表名為student
1,查詢某個表里的字段
select 字段名1,字段名1 form student;
例如:查詢student中的sname
select sname from student;
2,查詢某個表里的字段(字段下面有重復的內(nèi)容),并且顯示的查詢結(jié)果不顯示重復的
select distinct class from student;
3,查詢加條件
select * from student where sno=‘107‘;
4,查詢某個字段下滿足某條件的(class為95031中ssex為女的)
select * from student where class in(95031) and ssex=‘女‘;
5,模糊查詢
a,查詢sname第一個字是王的(_代表一個字符串)
select * from student where sname like ‘王_‘;
查詢sname第二個字是冰的
select * from teacher where tname like ‘_冰‘;
b,查詢sname第一個字是王的(%代表任意字符串)
select * from student where sname like ‘王%‘;
c,查詢sname含有王的(%代表任意字符串)
select * from student where snamelike ‘%王%‘;
where中可用的運算符有:算術運算符: +? -? *? /?? %
比較運算符: >?? >=?? (不等于)?? ==(等于,mysql擴展),!=(不等于,mysql擴展)
邏輯運算符: and(與)? or(或) not(非)
二,說明 表名為score
1,查詢degree是60到70的
select * from score where degree between ‘60‘ and ‘70‘;
也可以用比較運算符這樣寫:select * from scorewhere degree>60 and degree<70;
2,查詢表中degree為78和79的
select * from score where degree=‘78‘ or degree=‘79‘;
原文:https://www.cnblogs.com/wfc139/p/8902506.html
總結(jié)
以上是生活随笔為你收集整理的mysql查询表的内容_mysql查询表内容的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
                            
                        - 上一篇: 为什么csrss进程有三个_什么是客户端
 - 下一篇: 现代微型计算机的字长,计算机的字长