zkt24/z2/script.sql

7 lines
131 B
MySQL
Raw Normal View History

2024-04-25 16:35:23 +00:00
create database notas;
use notas;
CREATE TABLE nota (
id INT AUTO_INCREMENT PRIMARY KEY,
noteContent VARCHAR(60)
);