Erstellen
Datenbank erstellen
CREATE DATABASE databasename;Beispiel
CREATE DATABASE my-db;Tabelle erstellen
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
...
);Beispiel
Last updated