CREAR el udp_MULTI_SORT @FIELD1 VARCHAR (15), @FIELD2 VARCHAR (15) del PROCEDIMIENTO
COMO
SELECCIONAR *
DE RM00101
ORDEN DE CASE
CUANDO @FIELD1 = “Col1” ENTONCES Col1
CUANDO @FIELD1 = “Col2” ENTONCES Col2
--- etc ----
EXTREMO
, CASO
CUANDO @FIELD2 = “Col1” ENTONCES Col1
CUANDO @FIELD2 = “Col2” ENTONCES Col2
--- etc ----
EXTREMO
nota de //: en la sugerencia antedicha, usted puede ser que necesite agregar más “declaraciones de caso” para acomodar para diversos tipos de datos
O, el método rápido y sucio
CREAR el udp_MULTI_SORT @FIELD1 VARCHAR (15), @FIELD2 VARCHAR (15) del PROCEDIMIENTO
COMO
exec (SELECCIONAR * DE LA ORDEN RM00101 CERCA [“+ @FIELD1 +”], [“+ @FIELD2 +”] ')
|