Re: select column from table

Поиск
Список
Период
Сортировка
От scott.marlowe
Тема Re: select column from table
Дата
Msg-id Pine.LNX.4.33.0306300700460.13665-100000@css120.ihs.com
обсуждение исходный текст
Ответ на select column from table  (Abdul Wahab Dahalan <wahab@mimos.my>)
Список pgsql-sql
On Mon, 30 Jun 2003, Abdul Wahab Dahalan wrote:

> Hi everybody!
> 
> I just want to know is there a way in SQL command that can handle column 
> selection?.
> The case is :
> If I've a table with 10 columns and I want to select 8 of them without 
> rewrite the columns/fields name in the SQL query?
> eg : Current SQL query is :- Select a,b,c,d,e,f,g,h from abctable; - 
> greps 8 columns
>        Can SQL do something like Select * from abctable without i,j ? - 
> greps all 8 columns?

Not really like that, but you can create a view:

create view test as selct a,b,c,d,e,f,g,h from table

then 

select * from test;



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

Предыдущее
От: Bruno Wolff III
Дата:
Сообщение: Re: Bitwise operation
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Seqno. is not btree?