You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATETABLE "tBl1" ( -- Created table name is "tBl1"
id int
);
SELECT*FROM tbl1; -- failureSELECT*FROM tBl1; -- failureSELECT*FROM TBL1; -- failureSELECT*FROM"tbl1"; -- failureSELECT*FROM"tBl1"; -- successCREATETABLEtBl2 ( -- Created table name is "tbl2"
id int
);
SELECT*FROM tbl2; -- successSELECT*FROM TBL2; -- successSELECT*FROM tBl2; -- successSELECT*FROM"TBL2"; -- failureSELECT*FROM"tbl2"; -- success
Should add strict option.
strict option's default value is true.
will user can optionally set to false.
The text was updated successfully, but these errors were encountered:
Should add strict option.
strict option's default value is true.
will user can optionally set to false.
The text was updated successfully, but these errors were encountered: