MySQL Forums
Forum List  »  InnoDB

Re: Declare a table as like MS SQL Server
Posted by: Peter Brawley
Date: January 03, 2018 12:09PM

MySQL is largely compatible with ISO SQL, not so much with MS SQL.

See https://dev.mysql.com/doc/refman/5.7/en/creating-tables.html for Create Table syntax.

Your table ...

create table rprt_def_war (
  rprt_id int, 
  ser varchar (50), 
  model varchar (50), 
  p_nm varchar (50) 
) engine=innodb; 

Options: ReplyQuote


Subject
Views
Written By
Posted
907
January 03, 2018 11:35AM
Re: Declare a table as like MS SQL Server
610
January 03, 2018 12:09PM
577
January 03, 2018 01:02PM
875
January 04, 2018 11:49AM
582
January 04, 2018 01:03PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.