Was this helpful?
DROP Examples
1. Drop an index named, tindex.
drop index tindex;
commit;
2. Drop a base table and all related views, indexes, and permissions.
drop table employee;
commit;
3. In an embedded program, drop a view.
exec sql drop view tempview;
exec sql commit;
Last modified date: 01/30/2023