日期:2014-05-18  浏览次数:20538 次

字段查询????
怎么查询表Face中字段id的最后一行,并获得取它的值???

------解决方案--------------------
select top 1 id
from face
order by id desc
------解决方案--------------------
select top 1 id
from face
order by id desc
go
------解决方案--------------------
select top 1 id from face order by id desc
------解决方案--------------------
create table face(id int identity(1,1) primary key not null, face_id int )

insert into face

select 1 union all
select 1 union all
select 1 union all
select 1
------解决方案--------------------
select scope_identity() as maxID