7 lines
131 B
SQL
7 lines
131 B
SQL
create database notas;
|
|
use notas;
|
|
|
|
CREATE TABLE nota (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
noteContent VARCHAR(60)
|
|
); |