MYSQL: Create Table If Not Exists 1.29M viewsSeptember 10, 2022mysql sql 4 Marin September 7, 2022 0 Comments If I do a Create Table If Not Exists, and a table with the same name exists with fewer rows (or columns), what would happen? 2 Answers ActiveVotedNewestOldest 4 Bill the Lizard Posted September 7, 2022 0 Comments Nothing. If the “IF Not Exists” clause fails, the rest of the create is skipped. 9 Robert Gamble Posted September 7, 2022 0 Comments The table will not be created if a table with the same name already exists regardless of table layout. Register or Login