Re: SELECT with WHERE clause by column number

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: SELECT with WHERE clause by column number
Дата
Msg-id 4586CF07.9000900@archonet.com
обсуждение исходный текст
Ответ на SELECT with WHERE clause by column number  (Carlos Santos <carloscompels@yahoo.com.br>)
Список pgsql-sql
Carlos Santos wrote:
> SELECT id FROM myTable WHERE column-number = 'value';
> (PS: The id column is the primary key of myTable).
> 
> That is a select using column number in the WHERE clause what don't exists in SQL.
> 
> I need this because there's a situation in my program where I don't have the column name.
> I've solved that querying Postgresql the name of the column with that number, and then creating  the SELECT query.
> But this solution is slow... two database calls...

If you don't know what the column is, how do you know what you are 
testing against? Or what type it is, for that matter?

Anyway, just have build a list of column-name,column-type pairs for 
relevant tables at application start-up, or store it in a configuration 
file. Unless you're building/changing tables all the time, that should work.

I'm curious as to what type of application can usefuly query a database 
without knowing what structure it has.

--   Richard Huxton  Archonet Ltd


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

Предыдущее
От: Carlos Santos
Дата:
Сообщение: SELECT with WHERE clause by column number
Следующее
От: "Aaron Bono"
Дата:
Сообщение: Re: SELECT with WHERE clause by column number