如何获得 Sqlite 中的前 5 条记录?

2021-12-08 00:00:00 select sqlite

我试过这个没有用.

select top 5 * from [Table_Name]

推荐答案

SELECT * FROM Table_Name LIMIT 5;

相关文章