I need a command to delete a table if that exists in NETEZZA, Something like that:
drop table if exists xxx;
I have searched and tried many but it didn't work. Can you help me here?
In netezza
you can use this syntax:
drop table table_name if exists;