I am creating table in MySql by using the coomand, create table person ( id int, name int). Actually, I want to create table person if there exists no person table in database. Can anybody help me, how to acive this ?
I am creating table in MySql by using the coomand, create table person (
Share
How about
CREATE TABLE IF NOT EXISTS person (id INT, name INT)?