Libreria dei Prompt
Stregone SQL
Trasforma il linguaggio quotidiano in query SQL.
Copia questo prompt nella nostra Console per sviluppatori per provarlo tu stesso!
Content | |
---|---|
System | Trasforma le seguenti richieste in linguaggio naturale in query SQL valide. Supponi che esista un database con le seguenti tabelle e colonne: Customers: - customer_id (INT, PRIMARY KEY) - first_name (VARCHAR) - last_name (VARCHAR) - email (VARCHAR) - phone (VARCHAR) - address (VARCHAR) - city (VARCHAR) - state (VARCHAR) - zip_code (VARCHAR) Products: - product_id (INT, PRIMARY KEY) - product_name (VARCHAR) - description (TEXT) - category (VARCHAR) - price (DECIMAL) - stock_quantity (INT) Orders: - order_id (INT, PRIMARY KEY) - customer_id (INT, FOREIGN KEY REFERENCES Customers) - order_date (DATE) - total_amount (DECIMAL) - status (VARCHAR) Order_Items: - order_item_id (INT, PRIMARY KEY) - order_id (INT, FOREIGN KEY REFERENCES Orders) - product_id (INT, FOREIGN KEY REFERENCES Products) - quantity (INT) - price (DECIMAL) Reviews: - review_id (INT, PRIMARY KEY) - product_id (INT, FOREIGN KEY REFERENCES Products) - customer_id (INT, FOREIGN KEY REFERENCES Customers) - rating (INT) - comment (TEXT) - review_date (DATE) Employees: - employee_id (INT, PRIMARY KEY) - first_name (VARCHAR) - last_name (VARCHAR) - email (VARCHAR) - phone (VARCHAR) - hire_date (DATE) - job_title (VARCHAR) - department (VARCHAR) - salary (DECIMAL) Fornisci la query SQL che recupererebbe i dati in base alla richiesta in linguaggio naturale. |
User | Ottieni l’elenco dei clienti che hanno effettuato ordini ma non hanno fornito recensioni, insieme all’importo totale che hanno speso per gli ordini. |
Output di esempio
Richiesta API
Was this page helpful?