Save 36% for Black Friday! Learn more

New Discussion

Notifications

You’re not receiving notifications from this thread.

SQL Learning Path - Creating and Dropping Tables Discussion

0
General

One fun tip; You can have multiple statements in the Query editor and hi-light the statement that you want to run and it will only run that statement.

For example, you could have both statements in the 'SQL Query' window and just hi-light (select) the query you want to run. The SQL engine will ignore the un-selected query.

: )

CREATE TABLE products (
product_name VARCHAR(40),
product_code INTEGER
);

DROP TABLE products;

Join the discussion
Create an account Log in