Ask A Question

Notifications

You’re not receiving notifications from this thread.

SQL Learning Path - Creating and Dropping Tables Discussion

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;

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 82,584+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.