muqtadar08 / finetuned_gemma_sql_generator

  • Public
  • 19 runs
  • T4
Iterate in playground
  • Prediction

    muqtadar08/finetuned_gemma_sql_generator:3b5f9fda888ca684c347536ba9fc01a7cfc60a83ae30f39c220dd072289df0ec
    ID
    4a9jahe17srg80cf08ybwmjggg
    Status
    Succeeded
    Source
    Web
    Hardware
    T4
    Total duration
    Created
    by @muqtadar08

    Input

    ddl_doc
    CREATE TABLE products ( product_id INT, product_name VARCHAR(100), category VARCHAR(50), price DECIMAL(10, 2), stock_quantity INT ); INSERT INTO products (product_id, product_name, category, price, stock_quantity) VALUES (1, 'Smartphone', 'Electronics', 599.99, 100), (2, 'Laptop', 'Electronics', 999.99, 50), (3, 'Headphones', 'Electronics', 99.99, 200), (4, 'T-shirt', 'Apparel', 19.99, 300), (5, 'Jeans', 'Apparel', 49.99, 150);
    question
    find the price of laptop

    Output

    SELECT price FROM products WHERE category = 'Electronics' AND product_name = 'Laptop';
    Generated in

Want to make some of these yourself?

Run this model