Do underscores in table names affect performance or cause issues on some platforms?
For example, user_profiles
user_profiles
Would it be better to use user
user
You can simply add grave accent (`) before and after column name. For example:
CREATE TABLE USERS( `PERSON_ID` NVARCHAR(100), `FNAME` NVARCHAR(255), `LNAME` NVARCHAR(255), PRIMARY KEY (`PERSON_ID`) );