How to create a select in Firebird?

Asked

Viewed 438 times

1

Create a select listing 03 fields from any table by sorting the data through the 2nd field.

I’m pretty weak in Irebird someone can tell me how to do it?

1 answer

1


If I understand your question, you want something like this:

select
  campo1,
  campo2,
  campo3
from
  tabela
order by
  2 /*ordenado pelo índice das colunas*/

Browser other questions tagged

You are not signed in. Login or sign up in order to post.