分析
关键词:where
用法:select [列名] from [表名] where 判断条件 order by ..
判断条件:相等(=),大于(>),小于(<),...
代码
select prod_id,prod_name
from Products
where prod_price>=9
分析
关键词:where
用法:select [列名] from [表名] where 判断条件 order by ..
判断条件:相等(=),大于(>),小于(<),...
代码
select prod_id,prod_name
from Products
where prod_price>=9