Re: [INTERFACES] How do I drop a column from a table?
В списке pgsql-interfaces по дате отправления:
| От | Robert Carbonari |
|---|---|
| Тема | Re: [INTERFACES] How do I drop a column from a table? |
| Дата | |
| Msg-id | 91E49E736688D21185F500A0C985C705156D9D@DOOM обсуждение исходный текст |
| Список | pgsql-interfaces |
> Hi, > > I'm still quite new at this but it should be a simple operation: How do I > drop a column form a Postgres table. The next best thing would be knowing > how to change a column so that it can accept null values. > > Any takers? Hi Robert, I don't know how to email all in elm, so if you could forward this to the list for verification I would appreciate. Anyway, I don't think you can drop a column. What you can do is create a new table by doing a select into the new table (leaving out the columns you don't want) and then droping the old table. Once the old table is dropped you can rename the new to the old one's name: select f1,f2...,fn into table newtable from oldtable; drop table oldtable; alter table newtable rename to oldtable; Hope this helps...james > ************ > Robert Carbonari Programmer Optimal Robotics Corp. e-mail: robertc@optimal-robotics.com phone: (514)738-8885 ext. 146
В списке pgsql-interfaces по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера