
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
Run ambiguous query :
1. at database in 3rd dialect
SQL> select id from t1, t2;
Statement failed, SQLSTATE = 42702
Dynamic SQL Error
-SQL error code = -204
-Ambiguous field name between table T1 and table T2
-ID
2. at database in 1st sql dialect
SQL> select id from t1, t2;
SQL warning code = 204
-<Missing arg #1 - possibly status vector overflow>
-Ambiguous field name between table T1 and table T2
Warning message is obviously wrong.
|
|
Description
|
Run ambiguous query :
1. at database in 3rd dialect
SQL> select id from t1, t2;
Statement failed, SQLSTATE = 42702
Dynamic SQL Error
-SQL error code = -204
-Ambiguous field name between table T1 and table T2
-ID
2. at database in 1st sql dialect
SQL> select id from t1, t2;
SQL warning code = 204
-<Missing arg #1 - possibly status vector overflow>
-Ambiguous field name between table T1 and table T2
Warning message is obviously wrong. |
Show » |
|