Forum Moderators: coopster
CREATE TABLE some
(Password VARCHAR(50),
Status VARCHAR(2) );
It runs fine and creates the table with those fields, but the Password and Status fields are highlighted the same color as CREATE and TABLE.
Then I ran this query:
CREATE TABLE someThing
(Pword VARCHAR(50),
Stat VARCHAR(2) );
The fields were no longer highlighted the same color as CREATE and TABLE
Password and Status aren't reserved words, but is this something to be concerned about or am I just being paranoid? I haven't seen anything in the documentation about this....