牛客刷SQL题Day5
SQL69 返回产品并且按照价格排序
select prod_name , prod_price
from Products
where prod_price between 3 and 6
select prod_name , prod_price
from Products
where 6>=prod_price and prod_price >=3
踩坑1:
between......and.......包括边界。
踩坑2:
下面这种方式错误。
得换下面方式:
SQL71 检索供应商名称
select vend_name
from Vendors
where vend_state='CA' and vend_country='USA'
踩坑1:
这里要加引号,主要原因是定义的时候为 字符 类型。
SQL72 检索并列出已订购产品的清单
select order_num, prod_id ,quantity
from OrderItems
where quantity >=100 and prod_id in ('BR01','BR02','BR03')
踩坑1:
用法用错了。
SQL75 检索产品名称和描述(一)