MyDatabase

suggest change

You must create your own database, and not use write to any of the existing databases. This is likely to be one of the very first things to do after getting connected the first time.

CREATE DATABASE my_db;
USE my_db;
CREATE TABLE some_table;
INSERT INTO some_table ...;

You can reference your table by qualifying with the database name: my_db.some_table.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents