如何更新 Interbase 数据库中的一行?
我在 Interbase 表中有两行具有相同的数据。该表没有主键。如何更新该表中的一行?
I have two rows with same data in an Interbase table.The table does not have a primary key. How can I update a single row in that table?
我在 Interbase 表中有两行具有相同的数据。该表没有主键。如何更新该表中的一行?
I have two rows with same data in an Interbase table.The table does not have a primary key. How can I update a single row in that table?
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
Interbase 表有一个名为 RDB$DB_KEY 的系统列。您可以在 UPDATE 查询的 WHERE 子句中使用它。
Interbase tables has a system column named RDB$DB_KEY. You can use that in the WHERE clause of your UPDATE query.