求一个sql server查询语句
数据库text下有表productinfo,属性有prodid,prodname,prodfact,unitprice,factaddress现在要求单价小于均价的产品的prodname,prodfact,unitprice,查询怎么写啊,能用where语句吗?
这是我写的,报错搞不定
use test
go
select prodname as 品名,prodfact as 厂商,unitprice as 单价 from productinfo
where unitprice>avg(unitprice)
go
正确的该怎么写啊?
拜托! select prodname as 品名,prodfact as 厂商,unitprice as 单价 from productinfo
where unitprice <
(select avg(unitprice) from productinfo);
试试这个! select prodname ,prodfact ,unitprice
from productinfo
where unitprice<avg(unitprice)
要不试下这个? 你的这个和我的差不多啊,搞不定,提示where子句中不能有聚合函数。
不过你楼上的可以。 搞定了没有呀? select empno,ename,job from emp where sal<(select avg(sal) * from emp)
select *from emp
意思一样,只是表名,字段名不同
页:
[1]