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.
如何在 Acess 2007 上删除 SQL 中表的第一行?我尝试过 Delete Top (1),但这会导致语法错误。
你会需要:
DELETE t.* FROM Table1 t WHERE t.ID In (SELECT Top 1 ID FROM Table1 ORDER BY ID)
Delete from tableName where IDCOLUMN = ( select top(1) IDCOLUMN from tableName )