注:本操作仅在Idea中进行(并未在MySQLworkbench中哦)
join内连接(inner)概述:
基于连接谓词将两张表组合在一起,从而产生新的一张表(类似与操作,取其相同部分的属性)。
1、首先,你要有两个表:
表1:people
表2:students
表1:people 表2:students2、然后,进行sql语句操作
selectstudents.s_name,students.s_age,people.p_sex
fromstudents
inner joinpeople
onstudents.s_name=people.p_name
order bystudents.s_name;
3、结果,当当当~
网友评论