Skip to content

Commit

Permalink
adicionando DB
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraDark committed Jun 21, 2021
1 parent f58c13c commit 024d116
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions db/agenda.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
create database dbagenda;
show databases;
use dbagenda;
create table contatos(
idcon int primary key auto_increment,
nome varchar(50) not null,
fone varchar(15) not null,
email varchar(50)
);
show tables;
describe contatos;

0 comments on commit 024d116

Please sign in to comment.