精选优质文档-倾情为你奉上 单项选择题部分 (共30题 每题2分 共60分) 2. 在SQL Server服务器上,存储过程是一组预先定义并( )的T-SQL语句。 A保存B编译C解释D编写 正确答案是:B 3. 现有订单表orders,包含用户信息userid, 产品信息 productid, 以下( )语句能够返回至少被订购过两回的productid? Aselect productid from orders where count(productid)1Bselect productid from orders where max(productid)1Cselect productid from orders where having count(productid)1 group by productidDselect productid from orders group by productid having count(productid)1 正确答案