SQL query

OPEN AI Output Prompted by Jared SQL

SELECT * FROM FoodTable WHERE FoodType IN ('Vegetable', 'Grain') ORDER BY FoodName ASC LIMIT 25;

Inputs from Airtable

The request: SQL query The AI Prompt Write a sample SQL Query. The Transcript In the query all records for a table about food should be pulled where the food type is vegetable or grain. Additionally it should be sorted alphabetically and limited to 25 results.