Once a table is created in a database, any
attempt to create the table again will fail. Some SQL
servers support clauses like:create table foo if
not exists()You will need to
check your database's documentation to find out if it
supports that syntax (or something
similar).