DROP INDEX - remove an index
DROP INDEX name [, ...] [ CASCADE | RESTRICT ]
DROP INDEX drops an existing index from the database system. To execute this command you must be the owner of the index.
This command will remove the index title_idx:
DROP INDEX title_idx;
DROP INDEX is a PostgreSQL language extension. There are no provisions for indexes in the SQL standard.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |