Loading...
Please wait while we prepare your content
Tip: For the best layout, collapse the left course sidebar while you work.
Step 1 of 7
A query is how you ask the database for data. You describe what you want; the engine figures out how to fetch it. In this walkthrough you will use one common layout, always in this order: • SELECT — which columns appear in the result • FROM — which table you read • WHERE — which rows to keep (optional, but we use it here) • ORDER BY — how to sort those rows • LIMIT — how many rows to return at most The next steps add each piece, one line at a time.
When you see a result grid appear under the editor, you have successfully run your first query. Next up: the Titani lab goes deeper with the full schema.