我的代码:
string basePath = @"D:\Doc\wordcount.mdb";
string connstr = "Provider=Microsoft.Jet.OLEDB.4.0 ;Data Source=" + basePath;
string sql = "select * from [wordcount]";
List<WordInfo> list = new List<WordInfo>();
using (OleDbConnection conn = new OleDbConnection(connstr))
{
try
{
OleDbCommand cmd = new OleDbCommand(sql, conn);
conn.Open();
OleDbDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
WordInfo tmp = new WordInfo();
tmp.word = reader.GetString(1);
tmp.flag = 0;
list.Add(tmp);
}
reader.Close();
conn.Close();
}
catch (Exception ex)
{
Console.WriteLine("异常:" + ex.Message);
}
}
数据库表:
我想按照count值的大小,从大到小降序取前500条记录,请问sql语句该怎么写,我初次接触所以不是很了解,请教各位!
请问这个desc是什么。。
追答排序用的
asc 为升序
desc 为降序
对数据库操作不是很了解,请问大概操作是怎样?
追答请看另一位的回答,就那样写sql。
追问把我程序里面的sql语句写成
select top 500 * from wordcound1 order by Count desc
这样就行了是吗?
这个desc是什么呀?
降序的意思,英文descent下降的简写。
本回答被提问者采纳