Ungültige Eingabe: WITH ist in diesem Kontext keine gültige Syntax
P粉124070451
P粉124070451 2023-10-23 11:59:56
0
1
495

Ich habe also eine ähnliche Anfrage

WITH customers_in_usa AS (
        SELECT 
           customerName, state
        FROM
           customers
        WHERE
           country = 'USA'
    ) SELECT 
        customerName
    FROM
        customers_in_usa
    WHERE
        state = 'CA'
    ORDER BY customerName;

Aber beim Schreiben habe ich einen Fehler gefunden: „WITH Invalid input at this position“ error_picture. Können Sie mir helfen zu verstehen, was mit diesem Code nicht stimmt?

P粉124070451
P粉124070451

Antworte allen(1)
P粉851401475

WITHcustomers_in_usaAS 目前是无效的 MySQL 代码。 MySQL 将来将在 MySQL 版本 8 中支持 CTE。

您可以重写 SQL 代码,这应该会产生相同的结果。

SELECT 
    customerName
  , state
FROM 
   customers 
WHERE
   country = 'USA'
 AND
   state = 'CA'
ORDER BY
   customerName
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage