Du kan göra så här:
create table if not exists <tablename> . . .;
truncate table <tablename>;
insert into <tablename>(cols)
select blah blahblah . . .;
Du behöver ingen if
uttalanden överhuvudtaget.
Du kan göra så här:
create table if not exists <tablename> . . .;
truncate table <tablename>;
insert into <tablename>(cols)
select blah blahblah . . .;
Du behöver ingen if
uttalanden överhuvudtaget.