Running SQL queries
To run your first query, there are two methods: Either select the first line of SQL, either with your keyboard or with your mouse, and press the key combination
CMD + Enter
of you're on a Mac, or Ctrl + Enter
if you're on a Windows or Linux machine, or place your cursor on a query and press the same key combination. On mobile devices, you can tap the "Run query" button on the upper right corner. To run multiple queries, select the queries and press the same key combination.The result of the query that was executed can then be found in the lower main area as a table:
Queries will only be executed if one or more queries are selected. If multiple queries shall be executed, make sure you use a semicolon at the end of each query. Otherwise an error will be displayed.

You can also run multiple queries sequentially, e.g. to create a table, insert some records, and display the results:
When you copy & paste the above SQLs, select them and run them, the result looks like this:

You can see on the left-hand side the newly created table
first_names
, that can be reused for other queries without having to reload the data again. Please keep in mind though that only the result of the last-run query will be displayed in the lower main result area. The data is persisted until you reload the overall SQL Workbench page.