Jump to content

[sql] transpose


charlie69
 Share

Recommended Posts

Algo do tipo:

select

(IF C1 = 'A' THEN 1 ELSE IF C2 = 'A' THEN 2 ELSE IF C3 = 'A' THEN 3) as A,

( igual para B ) as B,

( idem para C ) as C

from tabela...

Tens de consultar o manual da BD que estás a usar para veres a sintaxe do IF THEN ELSE

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

Link to comment
Share on other sites

ok, mas existe maneirta de por isso dinamico, de forma que hoje tenho 3 colunas, amanha posso ter 4

Sim, mas para tal tens de recorrer à linguagem de programação da base de dados que usas.

Crias uma função onde constróis essa query de forma dinâmica consultando as colunas através do catálogo da base de dados, executas a query dinâmica e retornas o resultado, que tipicamente é um cursor.

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

Link to comment
Share on other sites

Que base de dados está o SAS a usar? Ele aceita SQL porque está a passar isso ao SGBD.

O SAS tem uma linguagem de programação, já viste se tem funcionalidades suficientes para fazer isso?

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.