The simulated result you get with
CREATE TABLE TABLENAME12 ( TAB_ID INT NOT NULL AUTO_INCREMENT, NAME_FIRST NVARCHAR(200), TYPE NVARCHAR(200), PRIMARY KEY( TAB_ID ) );
It can also be used with another db like mysql, besides defining int and nvarchar types. if you use varchar and integer, you are compatible with postgresql instead.
source share