Re: drop table where tableName like 'backup_2007%' ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: drop table where tableName like 'backup_2007%' ?
Дата
Msg-id 28893.1206978914@sss.pgh.pa.us
обсуждение исходный текст
Ответ на drop table where tableName like 'backup_2007%' ?  (Emi Lu <emilu@encs.concordia.ca>)
Ответы Re: drop table where tableName like 'backup_2007%' ?
Список pgsql-sql
Emi Lu <emilu@encs.concordia.ca> writes:
> Is there a command to drop tables whose name begins a specific string?

No.  The standard answer to this type of problem is to write a little
plpgsql function that scans the appropriate catalog and issues commands
constructed with EXECUTE.
for r in select relname from pg_class where relname like 'backup_2007%'loop    execute 'DROP TABLE ' ||
quote_ident(r);endloop;
 

Note that the above is overly simplistic --- it doesn't pay attention
to schemas, for example.

Some people prefer to just print out the constructed commands into a
file, so they can eyeball them before actually executing them.
        regards, tom lane


В списке pgsql-sql по дате отправления:

Предыдущее
От: Emi Lu
Дата:
Сообщение: drop table where tableName like 'backup_2007%' ?
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: drop table where tableName like 'backup_2007%' ?