How to execute multiple SQL queries in MySQL Workbench?

user921020 picture user921020 · Jul 23, 2012 · Viewed 51.9k times · Source

I am using MySQL Workbench CE for Windows version 5.2.40.

I want to execute the following SQL queries together. However I can only execute the SQL queries by first executing the CREATE TABLE query, and then executing the INSERT INTO query and after that executing the SELECT query.

CREATE TABLE testTable(
    Name VARCHAR(20),
    Address VARCHAR(50),
    Gender VARCHAR(10)
)

INSERT INTO testTable
    VALUES
    ('Derp', 'ForeverAlone Street', 'Male'),
    ('Derpina', 'Whiterun Breezehome', 'Female')

Select * FROM testTable

So how do I execute the CREATE TABLE, INSERT INTO and the SELECT queries by one click?

Answer

Weijing Jay Lin picture Weijing Jay Lin · Mar 29, 2016

You could use Ctrl+Shift+Enter to run everything with semicolon end.

For Mac +shift+return