第1关:基本SELECT查询
USE Mall
GOSET NOCOUNT ON---------- retrieving multiple column ----------
-- ********** Begin ********** --
select prod_name,prod_price
from Products-- ********** End ********** --GO---------- retrieving all column ----------
-- ********** Begin ********** --
select *
from Products-- ********** End ********** --GO
第2关:带限制条件的查询和表达式查询
USE Mall
GoSET NOCOUNT ON---------- retrieving with limited ----------
-- ********** Begin ********** --
select top 2 prod_name
from Products-- ********** End ********** --
GO---------- retrieving with expression ----------
-- ********** Begin ********** --
select prod_price,prod_price*0.8 as discount_price
from Products-- ********** End ********** --
GO
第3关:使用WHERE语句进行检索
USE Mall
GoSET NOCOUNT ON---------- retrieving with range ----------
-- ********** Begin ********** --
select prod_name,prod_price
from Products
where prod_price between 3 and 5-- ********** End ********** --GO---------- retrieving with nomatches ----------
-- ********** Begin ********** --
select prod_name,prod_price
from Products
where prod_name !='Lion toy'-- ********** End ********** --GO
声明:著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。