DROP-TABLE — Drop a database table.
Function
nameThe name of the table as a string, symbol or SQL expression.
databaseA database object which defaults to *default-database*.
if-does-not-existA symbol. Meaningful values are :ignore or :error (the default).
Drops the table called name from
      database which defaults to
      *default-database*. If the table does not exist
      and if-does-not-exist is
      :ignore then drop-table
      returns NIL whereas an error is signalled if
      if-does-not-exist is
      :error.
      
(table-exists-p [foo])
=> T
(drop-table [foo] :if-does-not-exist :ignore)
=> 
(table-exists-p [foo])
=> NIL