如何用SQL语句取出数据库中的特定一条数据?

如题所述

通过查询语句select * from user where id=1


我不知道你这个username指的是不是字段,如果是要取出表中某个字段的值。


可以通过select 字段名1,字段名2 ... from user where id=1。

-- MS sql server2005以上,ORACLE


select * from (

select row_number() over (  order by starttime asc) as rownum,* from steriworkrecord      

where starttime  between '2013-11-1' and '2013-12-31'

)  a

where rownum between 2 and 10

-- 【注意( order by starttime asc)是你排序的方式asc升序,desc降序】

-- ORACLE还可以


select * from (

select rownum as n,* from steriworkrecord  

where starttime  between '2013-11-1' and '2013-12-31'

)  a

where a.n between 2 and 10

-- MYSQL,postgreSQL似乎只能标量子查询

SELECT *FROM (

SELECT a.*,(

SELECT count(*)  FROM steriworkrecordb    WHERE b.ID<= a.ID) AS n 

from steriworkrecorda

) ts

where ts.n between 2 and 10

-- 【注意b.ID<= a.ID  其中ID换成你的主键名称】

温馨提示:答案为网友推荐,仅供参考