In article <1112817807(dot)4254408fecadc(at)webmail(dot)telus(dot)net>,
Mischa <mischa(dot)Sandberg(at)telus(dot)net> writes:
> I've got a similar request for other objects that do/do not exist.
> Maybe it's just that I got lazy using MSSQL, but it sure was convenient
> to have:
> IF object_id('WorkTable') IS NULL
> CREATE TABLE WorkTable(...
> etc.
I got lazy using MySQL, where it was convenient to have
CREATE TABLE IF NOT EXISTS tbl (...)
and
DROP TABLE IF EXISTS tbl
This is the only feature of MySQL I really miss.