Sybase Drop Table

drop table command removes table definition and its rows(data), indexes, triggers, permissions. But, delete table command removes the only rows(data) not table structure.

Syntax:

drop table [[database.]owner.]table_name [, [[database.]owner.]table_name] ...

Examples:

drop table employee go