商品表原表按照商品id升序排列
select REPLACE(shop_id,null,'不确定'),
REPLACE(shop_name,null,'不确定')
FROM ShopProduct AS SP RIGHT OUTER JOIN Product AS P
ON SP.product_id = P.product_id
where shop_id IS NULL;
sql基础教程7-2
阅读 62
2022-01-12
商品表原表按照商品id升序排列
select REPLACE(shop_id,null,'不确定'),
REPLACE(shop_name,null,'不确定')
FROM ShopProduct AS SP RIGHT OUTER JOIN Product AS P
ON SP.product_id = P.product_id
where shop_id IS NULL;
相关推荐
精彩评论(0)