题解 | #检索产品名称和描述(二)#
检索产品名称和描述(二)
https://www.nowcoder.com/practice/669913837a7648f9aa0caaf6a88c834f
select prod_name,prod_desc from Products where instr(prod_desc,'toy')=0 order by prod_name # instr不含‘toy’返回值为0
检索产品名称和描述(二)
https://www.nowcoder.com/practice/669913837a7648f9aa0caaf6a88c834f
select prod_name,prod_desc from Products where instr(prod_desc,'toy')=0 order by prod_name # instr不含‘toy’返回值为0
相关推荐