Puedes hacer esto:
create table if not exists <tablename> . . .;
truncate table <tablename>;
insert into <tablename>(cols)
select blah blahblah . . .;
No necesitas ningún if
declaraciones en absoluto.
Puedes hacer esto:
create table if not exists <tablename> . . .;
truncate table <tablename>;
insert into <tablename>(cols)
select blah blahblah . . .;
No necesitas ningún if
declaraciones en absoluto.