按字段导出SQL数据

时间:2012-03-14 16:00:33

标签: sql

我有一个SQL数据库,我想根据一个字段的条件导出数据。例如,

表格字段: 数 日期 头 备注

“数字”字段包含重复的条目,但每个条目的所有其他信息都不同。我需要导出Number = xxxxx(我要导出的数字)的每个Number字段的所有Date,Header和Notes数据。

我是SQL和查询的新手,所以非常感谢帮助。

1 个答案:

答案 0 :(得分:1)

select Date, Header,Notes
from table
where number = xxxxx


SELECT                 -- keyword to retrieve data
   date, header, notes -- list of columns I want to retrieve
FROM table             -- name of table to get data from
WHERE                  -- Restrictions to limit what data rows to bring back

这应该是你的开始,你可以用SELECT语句及其选项做更多的事情