Java教程

SQL中的子查询

本文主要是介绍SQL中的子查询,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
select
	product.id
	,detail.name
	,product.price
	-- 可以把区分code转换为名称
	, (SELECT testFild from country where country.id = product.id) AS testFild
	-- 当满足某些条件的时候才会进行查询
	,CASE
		WHEN product.price > 100 THEN
			(select country from country where country.id = product.id)
		ELSE '其他' 
	END country
from
	product
left JOIN 
	detail
ON
	product.id = detail.id
这篇关于SQL中的子查询的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!