Untitled
unknown
mysql
2 years ago
491 B
12
Indexable
-- create database loja charset 'utf8' collate utf8_general_ci;
/* */
-- use loja;
/*
create table usuarios(
id_usuarios int primary key auto_increment,
nome varchar(100) not null,
idade int,
email varchar(100)
); */
-- Alter table funcionarios add cargo varchar(100);
-- DROP table usuarios;
-- use loja;
/*Insert
into usuarios(nome,idade,email)
values ('Daniel', 19, '[email protected]'),
('Rafael', 11, '[email protected]');
*/
-- select * from usuarios;Editor is loading...
Leave a Comment