从MS Access数据库中选择最后一条记录
问题描述:
如何在MS Access查询中使用TOP(1)关键字.
从mycolumn desc的mytable订单中选择* TOP(1);
这个奎里给了我错误;
实现该代码的任何其他替代方法;
How to use TOP(1) keyword in MS Access query.
select * TOP(1) from mytable orderby mycolumn desc;
this querry gives me error;
Any other alternate to implement this code;
答
删除"*",使用此通过mycol1 desc从mytable顺序中选择top(1)mycol1;"
Remove the "*", use this "select top(1) mycol1 from mytable order by mycol1 desc;"