Mariadb-Developer-Examples/orders/schema/create.sql

6 wiersze
98 B
MySQL
Czysty Zwykły widok Historia

2020-03-05 20:50:44 +00:00
CREATE DATABASE orders;
2020-02-06 16:44:33 +00:00
2020-03-05 20:50:44 +00:00
CREATE TABLE orders.orders (
2020-03-05 20:49:58 +00:00
description varchar(50)
) ENGINE=InnoDB;