Untitled
unknown
mysql
10 months ago
491 B
6
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, 'darloncel@gmail.com'), ('Rafael', 11, 'rafael@gmail.com'); */ -- select * from usuarios;
Editor is loading...
Leave a Comment