Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 385 Bytes

SQL-validator.md

File metadata and controls

21 lines (16 loc) · 385 Bytes

SQL-standard

Invalid

CREATE TABLE IF NOT EXISTS `posts` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT
)

Valid

CREATE TABLE  posts (
id INT  NOT NULL 
)