用sql2000怎么查询数据库最后的一列??一共有多少列??

2024-12-26 06:34:11
推荐回答(3个)
回答1:

假如有两列,一列是id,一列是name
最后一列是name这一列,sql语句是:
select name from table

至于一共有多少列好像还没有这样的要求出现过,我也不知道,呵呵,我不知道你为什么要查有多少列,有什么用处

回答2:

最后一列:select @@identity
select Max(ID) from table
共有多少列:select count(ID) from table

回答3:

count
sort by