Puoi farlo:
create table if not exists <tablename> . . .;
truncate table <tablename>;
insert into <tablename>(cols)
select blah blahblah . . .;
Non hai bisogno di alcun if
dichiarazioni affatto.
Puoi farlo:
create table if not exists <tablename> . . .;
truncate table <tablename>;
insert into <tablename>(cols)
select blah blahblah . . .;
Non hai bisogno di alcun if
dichiarazioni affatto.