欢迎投稿

今日深度:

数据库中表的复杂查询

数据库中表的复杂查询


数据库中表的复杂查询
	1、连接查询
		1.0连接的基本语法格式:
			from TABLE1 join_type TABLE2 [on (join_condition)][where (query_condition)]
			TABLE1:左表
			TABLE2:右表
			join_type:连接的类型。交叉、内连接、左外连接、右外连接
			on:设置连接条件
			where:对连接查询的结果进步一的筛选
		1.1交叉连接
			select * from CUSTOMER cross join ORDERS;
			或者
			select * from CUSTOMER,ORDERS;
			
			select c.name,o.order_number from CUSTOMER c,ORDERS o;
		1.2内连接:
			隐式内连接:(不使用on关键字,使用where)
				select * from CUSTOMER c,ORDERS o where c.id=o.customer_id;
			显式内连接:(使用on关键字)
				select * from CUSTOMER c inner join ORDERS o on c.id=o.customer_id;
		1.3外连接:
			左外连接:(返回符合连接条件的所有记录,同时还返回左表中其余的所有记录)
				select * from CUSTOMER c left outer join ORDERS o on c.id=o.customer_id;
			右外连接:(返回符合连接条件的所有记录,同时还返回右表中其余的所有记录)
				select * from CUSTOMER c right outer join ORDERS o on c.id=o.customer_id;
	2、子查询(嵌套查询)
		子查询: select * from orders where customer_id=(select id from customer where name='张三');
	3、联合查询
		SELECT * FROM orders WHERE price>200 UNION SELECT * FROM orders WHERE customer_id=1;
		取两条语句的并集,并去除重复的记录。


www.htsjk.Com true http://www.htsjk.com/DB2/20494.html NewsArticle 数据库中表的复杂查询 数据库中表的复杂查询1、连接查询1.0连接的基本语法格式:from TABLE1 join_type TABLE2 [on (join_condition)][where (query_condition)]TABLE1:左表TABLE2:右表join_type:连接的类型。...
评论暂时关闭