代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/298791/7935650
sql 26.sql
select gpyy,ghsbh,sum(qnt)
from gpb
group by gpyy,ghsbh
www.eeworm.com/read/298791/7935654
sql 23.sql
select gpyy as 语言,avg(gpdj)
as 平均价格,sum(gpdj*qnt)
as 光盘总价
from gpb
group by gpyy
www.eeworm.com/read/298791/7935668
sql 28.sql
select gpmc as 名称, gpyy as 语言,
gpsm as 说明
from gpb
where ghsbh=
(select ghsbh
from ghsb
where ghsbh=3)
www.eeworm.com/read/298791/7935682
sql 31.sql
select * from (select * from gpczb
where czbhm>2 and czbhm
www.eeworm.com/read/298791/7935691
sql 30.sql
select * from ghsb
where ghsbh in
(select ghsbh from gpb
where gpyy='英语')
www.eeworm.com/read/298791/7935694
sql 20.sql
select convert(char(20),getdate()) as 默认时间,
convert(char(20),getdate(),101) as 美国,
convert(char(20),getdate(),102) as ANSI
select
convert(char(20),getdate(),111 ) AS 日本,
convert(char(20),getd