¿Cuál es el propósito de Ordenar por 1 en la instrucción de selección SQL?

154

Estoy leyendo un código antiguo en el trabajo y he notado que hay varias vistas con una order by 1cláusula. ¿Qué logra esto?

Ejemplo:

Create view v_payment_summary AS
SELECT A.PAYMENT_DATE,
       (SELECT SUM(paymentamount)
          FROM payment B
         WHERE PAYMENT_DATE = B.PAYMENT_DATE
           and SOME CONDITION) AS SUM_X,
       (SELECT SUM(paymentamount)
          FROM payment B
         WHERE PAYMENT_DATE = B.PAYMENT_DATE
           and SOME OTHER CONDITION) AS SUM_Y    
FROM payment A    
ORDER BY 1;
eco
fuente
55
FYI: En general, se considera una mala práctica tener un ORDER BY en las vistas, a menos que pueda garantizar que la vista solo se usará para la presentación. Es un desperdicio porque ORDER BY ocurrirá 2 veces si usa la vista en otra consulta con ORDER BY.
OMG Ponis
3
@OMG Ponis: generalmente se considera ilegal tener un ORDER BYen un VIEW. SQL estándar no lo permite. SQL Server lo ha prohibido desde 2005. Para la implementación de SQL que lo permite, el comportamiento es en gran parte indocumentado y contra intuitivo. En otras palabras, definitivamente debe evitarse.
cuando el
@onedaywhen: Estás predicando al coro, pero MySQL permite ORDER BY en las vistas , al igual que Oracle IME. SQL Server permite un ORDER BY si TOPestá presente, y a SSMS le encanta agregar TOP 100 PERCENT.
OMG Ponis
@OMG Ponies @ "MySQL permite ORDER BY en las vistas" - MySQL permite una CHECKrestricción en un CREATE TABLEpero no la cumple, ¡en realidad nunca se verifica! La pregunta es, ¿estos productos SQL siempre respetan las ORDER BYvistas in, por ejemplo, cuando se usan en una consulta que también tiene un orden de ORDER BYdos veces? ¿Incluso documentan el comportamiento o tienes que mirar los planes de ejecución para resolverlo? Creo que sabemos las respuestas;)
cuando el
FYI Acabo de descubrir otro uso para ORDER BY 1... usar un truco de aplicación cruzada donde quieres un alias en blanco. Desafortunadamente, el código, por ejemplo, es demasiado grande para un comentario, así que lo publiqué como respuesta debajo de FYI.
AndrewD

Respuestas:

208

Esta:

ORDER BY 1

... se conoce como "Ordinal": el número representa la columna en función del número de columnas definidas en la cláusula SELECT. En la consulta que proporcionó, significa:

ORDER BY A.PAYMENT_DATE

No es una práctica recomendada porque:

  1. No es obvio / explícito
  2. Si el orden de las columnas cambia, la consulta sigue siendo válida, por lo que corre el riesgo de ordenar por algo que no pretendía
Ponis OMG
fuente
1
Mi pregunta preguntando si había una ventaja al usar Ordinals: stackoverflow.com/questions/2253040/…
OMG Ponies
Esto solo tiene la sqletiqueta. En SQL estándar, solo los nombres de correlación de columna están permitidos en la OREDER BYcláusula porque, en teoría, los nombres de correlación de tabla están fuera del alcance, es decir, deberían estarlo ORDER BY PAYMENT_DATE;. Por supuesto, no todas las implementaciones de SQL cumplen con los estándares.
cuando el
Probado y trabajando en SQL Server;WITH cte AS( SELECT 1 AS Col1, 'z' AS Col2 UNION SELECT 2 AS Col1, 'y' AS Col2 UNION SELECT 3 AS Col1, 'x' AS Col2 ) SELECT Col2, Col1 FROM cte ORDER BY 1
Ivanzinho
@OMG Ponis, mencionaste que no es una práctica recomendada, ¿cuál será el próximo mejor reemplazo? preguntando porque tengo curiosidad .. gracias!
Dian Jin
40

Esto es útil cuando utiliza operadores basados ​​en conjuntos, por ejemplo, unión

select cola
  from tablea
union
select colb
  from tableb
order by 1;
daven11
fuente
44
Ajá, eso tiene sentido. Esta es la primera buena razón que he visto hasta ahora.
echo
44
@Lazer No lo creo, para realizar una unión probablemente haga una especie internamente, pero esta es una pregunta de implementación en lugar de una pregunta de salida lógica y en el espíritu de SQL no hay necesidad de mostrar las filas en orden. Además, ¿qué pasa si desea ordenar descendente? Entonces vuelves al problema original.
daven11
3
aún así ... preferiría usarorder by tablea.cola
Shahar Shokrani
1
@ShaharShokrani que no funcionaría. pero puedes decir, prefiero seleccionar cola como x de tablea union seleccionar colb como x de tableb ordenar por x;
Ozgur Ozturk
select * from (select cola col from tablea union select colb col from tableb) ordenar por col
hareluya86
8

simplemente significa ordenar la vista o tabla por primera columna del resultado de la consulta.

kshitij
fuente
7

Creo en Oracle significa ordenar por columna # 1

Christoph
fuente
7

Esto ordenará sus resultados por la primera columna devuelta. En el ejemplo, se ordenará por payment_date.

CTKeane
fuente
4

Como se menciona en otras respuestas ORDER BY 1 pedidos de por la primera columna.

Sin embargo, me encontré con otro ejemplo de dónde podrías usarlo. Tenemos ciertas consultas que deben ordenarse, seleccione la misma columna. Obtendría un error de SQL si ordenara Nameen el siguiente.

SELECT Name, Name FROM Segment ORDER BY 1
nicV
fuente
¿Por qué harías eso? por qué no alias ellos. [comentario demasiado tarde sin embargo]
abdul qayyum
1
@abdulqayyum es solo otra forma de hacer las cosas realmente. El ejemplo anterior está muy simplificado. A veces, la columna 'Nombre' es en realidad columnas diferentes de tablas diferentes que está insertando en otra tabla. Agregar un montón de alias puede dificultar la lectura. Otro ejemplo de dónde se usa es al seleccionar muchos cálculos diferentes y desea ordenar por uno, sin necesidad de alias. (Aunque aquí preferiría personalmente un alias para decir cuál es el cálculo)
nicV
-1

Ver también:

http://www.techonthenet.com/sql/order_by.php

Para una descripción del orden por. ¡Aprendí algo! :)

También he usado esto en el pasado cuando quería agregar un número indeterminado de filtros a una instrucción sql. Descuidado, lo sé, pero funcionó. :PAGS

kdmurray
fuente
-1

Un ejemplo de una base de datos de prueba del servidor WAMP:

mysql> select * from user_privileges;

| GRANTEE            | TABLE_CATALOG | PRIVILEGE_TYPE          | IS_GRANTABLE |
   +--------------------+---------------+-------------------------+--------------+
| 'root'@'localhost' | def           | SELECT                  | YES          |
| 'root'@'localhost' | def           | INSERT                  | YES          |
| 'root'@'localhost' | def           | UPDATE                  | YES          |
| 'root'@'localhost' | def           | DELETE                  | YES          |
| 'root'@'localhost' | def           | CREATE                  | YES          |
| 'root'@'localhost' | def           | DROP                    | YES          |
| 'root'@'localhost' | def           | RELOAD                  | YES          |
| 'root'@'localhost' | def           | SHUTDOWN                | YES          |
| 'root'@'localhost' | def           | PROCESS                 | YES          |
| 'root'@'localhost' | def           | FILE                    | YES          |
| 'root'@'localhost' | def           | REFERENCES              | YES          |
| 'root'@'localhost' | def           | INDEX                   | YES          |
| 'root'@'localhost' | def           | ALTER                   | YES          |
| 'root'@'localhost' | def           | SHOW DATABASES          | YES          |
| 'root'@'localhost' | def           | SUPER                   | YES          |
| 'root'@'localhost' | def           | CREATE TEMPORARY TABLES | YES          |
| 'root'@'localhost' | def           | LOCK TABLES             | YES          |
| 'root'@'localhost' | def           | EXECUTE                 | YES          |
| 'root'@'localhost' | def           | REPLICATION SLAVE       | YES          |
| 'root'@'localhost' | def           | REPLICATION CLIENT      | YES          |
| 'root'@'localhost' | def           | CREATE VIEW             | YES          |
| 'root'@'localhost' | def           | SHOW VIEW               | YES          |
| 'root'@'localhost' | def           | CREATE ROUTINE          | YES          |
| 'root'@'localhost' | def           | ALTER ROUTINE           | YES          |
| 'root'@'localhost' | def           | CREATE USER             | YES          |
| 'root'@'localhost' | def           | EVENT                   | YES          |
| 'root'@'localhost' | def           | TRIGGER                 | YES          |
| 'root'@'localhost' | def           | CREATE TABLESPACE       | YES          |
| 'root'@'127.0.0.1' | def           | SELECT                  | YES          |
| 'root'@'127.0.0.1' | def           | INSERT                  | YES          |
| 'root'@'127.0.0.1' | def           | UPDATE                  | YES          |
| 'root'@'127.0.0.1' | def           | DELETE                  | YES          |
| 'root'@'127.0.0.1' | def           | CREATE                  | YES          |
| 'root'@'127.0.0.1' | def           | DROP                    | YES          |
| 'root'@'127.0.0.1' | def           | RELOAD                  | YES          |
| 'root'@'127.0.0.1' | def           | SHUTDOWN                | YES          |
| 'root'@'127.0.0.1' | def           | PROCESS                 | YES          |
| 'root'@'127.0.0.1' | def           | FILE                    | YES          |
| 'root'@'127.0.0.1' | def           | REFERENCES              | YES          |
| 'root'@'127.0.0.1' | def           | INDEX                   | YES          |
| 'root'@'127.0.0.1' | def           | ALTER                   | YES          |
| 'root'@'127.0.0.1' | def           | SHOW DATABASES          | YES          |
| 'root'@'127.0.0.1' | def           | SUPER                   | YES          |
| 'root'@'127.0.0.1' | def           | CREATE TEMPORARY TABLES | YES          |
| 'root'@'127.0.0.1' | def           | LOCK TABLES             | YES          |
| 'root'@'127.0.0.1' | def           | EXECUTE                 | YES          |
| 'root'@'127.0.0.1' | def           | REPLICATION SLAVE       | YES          |
| 'root'@'127.0.0.1' | def           | REPLICATION CLIENT      | YES          |
| 'root'@'127.0.0.1' | def           | CREATE VIEW             | YES          |
| 'root'@'127.0.0.1' | def           | SHOW VIEW               | YES          |
| 'root'@'127.0.0.1' | def           | CREATE ROUTINE          | YES          |
| 'root'@'127.0.0.1' | def           | ALTER ROUTINE           | YES          |
| 'root'@'127.0.0.1' | def           | CREATE USER             | YES          |
| 'root'@'127.0.0.1' | def           | EVENT                   | YES          |
| 'root'@'127.0.0.1' | def           | TRIGGER                 | YES          |
| 'root'@'127.0.0.1' | def           | CREATE TABLESPACE       | YES          |
| 'root'@'::1'       | def           | SELECT                  | YES          |
| 'root'@'::1'       | def           | INSERT                  | YES          |
| 'root'@'::1'       | def           | UPDATE                  | YES          |
| 'root'@'::1'       | def           | DELETE                  | YES          |
| 'root'@'::1'       | def           | CREATE                  | YES          |
| 'root'@'::1'       | def           | DROP                    | YES          |
| 'root'@'::1'       | def           | RELOAD                  | YES          |
| 'root'@'::1'       | def           | SHUTDOWN                | YES          |
| 'root'@'::1'       | def           | PROCESS                 | YES          |
| 'root'@'::1'       | def           | FILE                    | YES          |
| 'root'@'::1'       | def           | REFERENCES              | YES          |
| 'root'@'::1'       | def           | INDEX                   | YES          |
| 'root'@'::1'       | def           | ALTER                   | YES          |
| 'root'@'::1'       | def           | SHOW DATABASES          | YES          |
| 'root'@'::1'       | def           | SUPER                   | YES          |
| 'root'@'::1'       | def           | CREATE TEMPORARY TABLES | YES          |
| 'root'@'::1'       | def           | LOCK TABLES             | YES          |
| 'root'@'::1'       | def           | EXECUTE                 | YES          |
| 'root'@'::1'       | def           | REPLICATION SLAVE       | YES          |
| 'root'@'::1'       | def           | REPLICATION CLIENT      | YES          |
| 'root'@'::1'       | def           | CREATE VIEW             | YES          |
| 'root'@'::1'       | def           | SHOW VIEW               | YES          |
| 'root'@'::1'       | def           | CREATE ROUTINE          | YES          |
| 'root'@'::1'       | def           | ALTER ROUTINE           | YES          |
| 'root'@'::1'       | def           | CREATE USER             | YES          |
| 'root'@'::1'       | def           | EVENT                   | YES          |
| 'root'@'::1'       | def           | TRIGGER                 | YES          |
| 'root'@'::1'       | def           | CREATE TABLESPACE       | YES          |
| ''@'localhost'     | def           | USAGE                   | NO           |
+--------------------+---------------+-------------------------+--------------+
85 rows in set (0.00 sec)

Y cuando se da adicional order by PRIVILEGE_TYPEo se puede dar order by 3. Observe que la tercera columna ( PRIVILEGE_TYPE) se ordena alfabéticamente.

mysql> select * from user_privileges order by PRIVILEGE_TYPE;
+--------------------+---------------+-------------------------+--------------+
| GRANTEE            | TABLE_CATALOG | PRIVILEGE_TYPE          | IS_GRANTABLE |
+--------------------+---------------+-------------------------+--------------+
| 'root'@'127.0.0.1' | def           | ALTER                   | YES          |
| 'root'@'::1'       | def           | ALTER                   | YES          |
| 'root'@'localhost' | def           | ALTER                   | YES          |
| 'root'@'::1'       | def           | ALTER ROUTINE           | YES          |
| 'root'@'localhost' | def           | ALTER ROUTINE           | YES          |
| 'root'@'127.0.0.1' | def           | ALTER ROUTINE           | YES          |
| 'root'@'127.0.0.1' | def           | CREATE                  | YES          |
| 'root'@'::1'       | def           | CREATE                  | YES          |
| 'root'@'localhost' | def           | CREATE                  | YES          |
| 'root'@'::1'       | def           | CREATE ROUTINE          | YES          |
| 'root'@'localhost' | def           | CREATE ROUTINE          | YES          |
| 'root'@'127.0.0.1' | def           | CREATE ROUTINE          | YES          |
| 'root'@'::1'       | def           | CREATE TABLESPACE       | YES          |
| 'root'@'localhost' | def           | CREATE TABLESPACE       | YES          |
| 'root'@'127.0.0.1' | def           | CREATE TABLESPACE       | YES          |
| 'root'@'::1'       | def           | CREATE TEMPORARY TABLES | YES          |
| 'root'@'localhost' | def           | CREATE TEMPORARY TABLES | YES          |
| 'root'@'127.0.0.1' | def           | CREATE TEMPORARY TABLES | YES          |
| 'root'@'localhost' | def           | CREATE USER             | YES          |
| 'root'@'127.0.0.1' | def           | CREATE USER             | YES          |
| 'root'@'::1'       | def           | CREATE USER             | YES          |
| 'root'@'localhost' | def           | CREATE VIEW             | YES          |
| 'root'@'127.0.0.1' | def           | CREATE VIEW             | YES          |
| 'root'@'::1'       | def           | CREATE VIEW             | YES          |
| 'root'@'127.0.0.1' | def           | DELETE                  | YES          |
| 'root'@'::1'       | def           | DELETE                  | YES          |
| 'root'@'localhost' | def           | DELETE                  | YES          |
| 'root'@'::1'       | def           | DROP                    | YES          |
| 'root'@'localhost' | def           | DROP                    | YES          |
| 'root'@'127.0.0.1' | def           | DROP                    | YES          |
| 'root'@'127.0.0.1' | def           | EVENT                   | YES          |
| 'root'@'::1'       | def           | EVENT                   | YES          |
| 'root'@'localhost' | def           | EVENT                   | YES          |
| 'root'@'127.0.0.1' | def           | EXECUTE                 | YES          |
| 'root'@'::1'       | def           | EXECUTE                 | YES          |
| 'root'@'localhost' | def           | EXECUTE                 | YES          |
| 'root'@'127.0.0.1' | def           | FILE                    | YES          |
| 'root'@'::1'       | def           | FILE                    | YES          |
| 'root'@'localhost' | def           | FILE                    | YES          |
| 'root'@'localhost' | def           | INDEX                   | YES          |
| 'root'@'127.0.0.1' | def           | INDEX                   | YES          |
| 'root'@'::1'       | def           | INDEX                   | YES          |
| 'root'@'::1'       | def           | INSERT                  | YES          |
| 'root'@'localhost' | def           | INSERT                  | YES          |
| 'root'@'127.0.0.1' | def           | INSERT                  | YES          |
| 'root'@'127.0.0.1' | def           | LOCK TABLES             | YES          |
| 'root'@'::1'       | def           | LOCK TABLES             | YES          |
| 'root'@'localhost' | def           | LOCK TABLES             | YES          |
| 'root'@'127.0.0.1' | def           | PROCESS                 | YES          |
| 'root'@'::1'       | def           | PROCESS                 | YES          |
| 'root'@'localhost' | def           | PROCESS                 | YES          |
| 'root'@'::1'       | def           | REFERENCES              | YES          |
| 'root'@'localhost' | def           | REFERENCES              | YES          |
| 'root'@'127.0.0.1' | def           | REFERENCES              | YES          |
| 'root'@'::1'       | def           | RELOAD                  | YES          |
| 'root'@'localhost' | def           | RELOAD                  | YES          |
| 'root'@'127.0.0.1' | def           | RELOAD                  | YES          |
| 'root'@'::1'       | def           | REPLICATION CLIENT      | YES          |
| 'root'@'localhost' | def           | REPLICATION CLIENT      | YES          |
| 'root'@'127.0.0.1' | def           | REPLICATION CLIENT      | YES          |
| 'root'@'::1'       | def           | REPLICATION SLAVE       | YES          |
| 'root'@'localhost' | def           | REPLICATION SLAVE       | YES          |
| 'root'@'127.0.0.1' | def           | REPLICATION SLAVE       | YES          |
| 'root'@'127.0.0.1' | def           | SELECT                  | YES          |
| 'root'@'::1'       | def           | SELECT                  | YES          |
| 'root'@'localhost' | def           | SELECT                  | YES          |
| 'root'@'127.0.0.1' | def           | SHOW DATABASES          |  YES          |
| 'root'@'::1'       | def           | SHOW DATABASES          | YES          |
| 'root'@'localhost' | def           | SHOW DATABASES          | YES          |
| 'root'@'127.0.0.1' | def           | SHOW VIEW               | YES          |
| 'root'@'::1'       | def           | SHOW VIEW               | YES          |
| 'root'@'localhost' | def           | SHOW VIEW               | YES          |
| 'root'@'localhost' | def           | SHUTDOWN                | YES          |
| 'root'@'127.0.0.1' | def           | SHUTDOWN                | YES          |
| 'root'@'::1'       | def           | SHUTDOWN                | YES          |
| 'root'@'::1'       | def           | SUPER                   | YES          |
| 'root'@'localhost' | def           | SUPER                   | YES          |
| 'root'@'127.0.0.1' | def           | SUPER                   | YES          |
| 'root'@'127.0.0.1' | def           | TRIGGER                 | YES          |
| 'root'@'::1'       | def           | TRIGGER                 | YES          |
| 'root'@'localhost' | def           | TRIGGER                 | YES          |
| 'root'@'::1'       | def           | UPDATE                  | YES          |
| 'root'@'localhost' | def           | UPDATE                  | YES          |
| 'root'@'127.0.0.1' | def           | UPDATE                  | YES          |
| ''@'localhost'     | def           | USAGE                   | NO           |     +--------------------+---------------+-------------------------+--------------+
85 rows in set (0.00 sec)

DEFINITIVAMENTE, una respuesta larga y mucho desplazamiento. También me costó mucho pasar el resultado de las consultas a un archivo de texto. Aquí es cómo hacerlo sin usar la into outfilecosa molesta.

tee E: /sqllogfile.txt;

Y cuando haya terminado, detenga el registro.

el primer golpe;

Espero que agregue más claridad.

kriss
fuente