Loading...
    • 開發者指南
    • API 參考
    • MCP
    • 資源
    • 發行說明
    Search...
    ⌘K
    資源
    概覽詞彙表系統提示詞
    使用案例
    概覽工單路由客戶支援 Agent內容審核法律摘要
    提示詞庫
    提示詞庫Cosmic Keystrokes企業先知網站精靈Excel 公式專家Google Apps 指令碼編寫者Python 除蟲高手時光旅行顧問說故事的夥伴引用你的來源SQL 巫師夢境解讀者雙關語專家烹飪創意家混成詞詩人Hal 幽默助手LaTeX 傳奇心情著色器Git 高手明喻達人倫理困境導航者會議記錄員習語闡釋者程式碼顧問函數製造者新詞創造者CSV 轉換器表情符號編碼器散文潤飾師觀點思考者瑣事產生器正念導師二年級簡化器VR 健身創新者個人識別資訊淨化器備忘錄大師職業教練評分大師繞口令面試問題製作者文法精靈謎語我這個程式碼澄清者外星人人類學家資料組織者品牌建立者效率估算者評論分類器方向解碼器激勵繆斯電子郵件提取器主控版主課程規劃者蘇格拉底賢者頭韻煉金術士未來時尚顧問多語言超能力產品命名專家哲學思考試算表巫師科幻情景模擬器自適應編輯器巴別塔廣播推文語氣檢測器機場代碼分析師
    Console
    Log in
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...

    Solutions

    • AI agents
    • Code modernization
    • Coding
    • Customer support
    • Education
    • Financial services
    • Government
    • Life sciences

    Partners

    • Amazon Bedrock
    • Google Cloud's Vertex AI

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Company

    • Anthropic
    • Careers
    • Economic Futures
    • Research
    • News
    • Responsible Scaling Policy
    • Security and compliance
    • Transparency

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Help and security

    • Availability
    • Status
    • Support
    • Discord

    Terms and policies

    • Privacy policy
    • Responsible disclosure policy
    • Terms of service: Commercial
    • Terms of service: Consumer
    • Usage policy
    提示詞庫

    SQL 魔法師

    將日常語言轉換為 SQL 查詢。

    將此提示複製到我們的開發者控制台中親自試用!

    內容
    System將以下自然語言請求轉換為有效的 SQL 查詢。假設存在具有以下表格和欄位的資料庫:

    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)

    提供基於自然語言請求檢索資料的 SQL 查詢。
    User獲取已下訂單但未提供任何評論的客戶清單,以及他們在訂單上花費的總金額。

    範例輸出

    SELECT c.first_name, c.last_name, SUM(o.total_amount) AS total_spent
    FROM Customers c
    INNER JOIN Orders o ON c.customer_id = o.customer_id
    LEFT JOIN Reviews r ON c.customer_id = r.customer_id
    WHERE r.review_id IS NULL
    GROUP BY c.customer_id, c.first_name, c.last_name;
    

    API 請求


    • API 請求