資料庫查詢語句

2021-06-18 12:11:25 字數 1213 閱讀 9599

--*表示要查詢所有列

select * from t_student

--查詢所有人的姓名資訊

select stu_name from t_student

--查詢張乾的手機號和位址

select stu_mobile,stu_address from t_student where stu_name='張乾';

--查詢表中年齡大於21歲的所有人姓名,手機號和位址

select stu_name,stu_age,stu_mobile,stu_address from t_student where stu_age>21;

--查詢表中年齡小於21歲(包括21歲)的所有人姓名,手機號和位址

select stu_name,stu_age,stu_mobile,stu_address from t_student where stu_age<=21;

select stu_name,stu_age,stu_mobile,stu_address from t_student where stu_age!>21;

--查詢表中年齡不等於21歲的所有人姓名,手機號和位址

select stu_name,stu_age,stu_mobile,stu_address from t_student where stu_age!=21;

select stu_name,stu_age,stu_mobile,stu_address from t_student where stu_age<>21;

--查詢表中年齡》21歲並且位址為「河北省保定市」的人的資訊

select * from t_student where stu_age>21 and stu_address='河北省保定市'

select * from t_student where stu_age>21 and stu_address like '%保定%'

--查詢表中年齡=21歲和25歲的人的資訊

select * from t_student where stu_age=21 or stu_age=25;

--查詢表中年齡在19到22歲之間的人的資訊(包括19和22)

select * from t_student where stu_age between 19 and 22;

--另一種寫法

select * from t_student where stu_age>=19 and stu_age<=22;

資料庫 查詢語句

隱式連線 select coursename,teachername from courses inner join teachers on courses.teacherid teahcer.teacherid 等價於顯式連線 select coursename,teachername from ...

資料庫高階查詢語句

巢狀子查詢 子查詢的優勢和特點 使用靈活,可以成為sql語句的多個部分 子查詢作為查詢條件使用 子查詢作為臨時表使用 降低sql語句的複雜度,提高sql語句的可讀性 作為臨時表使用 例 select stuname subject,score from select from stuinfo whe...

資料庫SQL語句查詢

新手小白菜一枚,求知 查詢所有同學的學號 姓名 選課數 總成績 select t1.stuid,t1.stuname,count t2.courseid sum score from tblstudent t1,tblscore t2 where t1.stuid t2.stuid group by...