8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:43:02 +01:00
This commit is contained in:
robocop 2005-12-28 02:21:06 +00:00
parent b35db884c6
commit 476bd4c368

View File

@ -101,6 +101,11 @@ SQL CHECKING
So, if you get an unexpected error "cannot update a read-only column", this
is exactly the reason.
* It's now forbidden to try to insert into the same column more than once in
the same insert statement: INSERT INTO T(A, B, A) ...
It's now forbidden to try to update the same column more than once in
the same update statement: UPDATE T SET A = x, B = y, A = z
SQL EXECUTION RESULTS
--------------------------