Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 FMDB,我只想使用 TOP 1 选择一条记录 - 你可以使用 FMDB 执行此操作吗?我已经用 Google 搜索过,但在任何地方都没有发现这一点 - 似乎是一个非常常见的使用场景。
任何人?
我不了解 fmdb,但它似乎使用原始/准备好的 sql 语句,因此您可以使用 SQLite 文档:
http://www.sqlite.org/lang_select.html
您可以看到它使用LIMIT 1(如 MySQL)而不是TOP 1(如 MS SQL)
LIMIT 1
TOP 1