摘要:
如下:id sid course result 1 2005001 语文 80.0 2 2005001 数学 90.0 3 2005001 英语 80.0 4 2005002 语文 56.0 5 2005002 数学 69.0 6 2005002 英语 89.0 declare @sql varchar(8000) set @sql='select sid' select @sql=@sql+... 阅读全文
posted @ 2010-08-07 10:31
余音
阅读(160)
评论(0)
推荐(0)
摘要:
create table tx( id int primary key, c1 char(2), c2 char(2), money int,num int ); insert into tx values (1 ,'A1','B1',9,81), (2 ,'A2','B1',7,53), (3 ,'A3','B1',4,62), (4 ,'A4','B1',2,91), (5 ,'A1','B2... 阅读全文
posted @ 2010-08-07 10:27
余音
阅读(857)
评论(0)
推荐(0)