MySQL has a really nice syntax for creating tables if they don't exist already:

CREATE TABLE IF NOT EXISTS foo (...)

How can I get the same functionality in Derby? I haven't been able to figure out the SQL command to check for the existence of a table.

Reply via email to