Ich schließe eine HackerRank-Herausforderung ab, aber in der Dokumentation steht, dass ich das Schlüsselwort AS
nicht verwenden soll:
Ich muss diese Abfrage in MySQL umschreiben, sodass sie weder das WITH A AS
中的 AS
,也不包含 SELECT...AS test in WITH A AS
noch das
WITH A AS ( SELECT DISTINCT MAX( LENGTH( customer_id ) ) AS test FROM orders UNION SELECT DISTINCT MIN( LENGTH( customer_id ) ) FROM orders ) SELECT test, LENGTH(test) FROM A🎜
WITH 子句用于声明 VIEW,因此您可以像下面这样重写它