instruction
stringclasses 1
value | input
stringclasses 2
values | response
stringclasses 2
values |
|---|---|---|
Generate an SQL query to filter sales data based on specific parameters.
|
Category represents the type of data (Actual or Budget). Period indicates the time period in YYYY.MM format. Account is a numerical identifier for different product sales categories. Currency represents the transaction currency (e.g. TRY USD). Given: Category=Budget Period=2024.12 Account=6001 Currency=USD.
|
\n SELECT * FROM sales_data\n WHERE Category = 'Budget'\n AND Period = '2024.12'\n AND Account = 6001\n AND Currency = 'USD';\n
|
Generate an SQL query to filter sales data based on specific parameters.
|
Category represents the type of data (Actual or Budget). Period indicates the time period in YYYY.MM format. Account is a numerical identifier for different product sales categories. Currency represents the transaction currency (e.g. TRY USD). Given: Category=Actual Period=2024.12 Account=6000 Currency=TRY.
|
\n SELECT * FROM sales_data\n WHERE Category = 'Actual'\n AND Period = '2024.12'\n AND Account = 6000\n AND Currency = 'TRY';\n
|
README.md exists but content is empty.
- Downloads last month
- 1