-
Notifications
You must be signed in to change notification settings - Fork 0
/
confident.sql
49 lines (46 loc) · 1.13 KB
/
confident.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
drop database if exists confident;
create database confident;
use confident;
CREATE TABLE usuarios (
idUsuario INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
nombre VARCHAR(50),
apellido VARCHAR(50)
);
Insert Into usuarios (nombre, apellido) Values
('Walter', 'Corrales'),
('Jon', 'Uriel'),
('Kleopatros', 'Peer'),
('Jordon', 'Hallsteinn'),
('Rolando Gerfrid', 'Kaj Keinan'),
('Anuj Neofit', 'Arrats Darin'),
('Euthymios', 'Eanraig'),
('Kristen', 'Ninoslav'),
('Keshawn', 'Georg'),
('Valentín', 'Bento'),
('Tristan', 'Androkles'),
('Sherwood', 'Agathangelos'),
('Amias', 'Ernst'),
('Floris', 'Hallsteinn'),
('Siemowit', 'Lir'),
('Kartik', 'Olufunmilayo'),
('Eardwulf', 'Egil'),
('René', 'Doru'),
('Dip', 'Giambattista'),
('Gero', 'Onyekachukwu'),
('Valeriu', 'Cnut'),
('Wilmaer', 'Suresh'),
('Hendrik', 'Masud'),
('Klaudio', 'Robert'),
('Muscowequan', 'Vladislav'),
('Herbie', 'Dubaku'),
('Iuppiter', 'Eizens'),
('Wetzel', 'Clinton'),
('Rishi', 'Husam'),
('Shelby', 'Shay'),
('Walker', 'Helgi'),
('Dionysos', 'Sebastiaan'),
('Spartak', 'Raimondas'),
('Nolan', 'Heraclius'),
('Elbert', 'Fedelmid'),
('Fridrihs', 'Gedaliah'),
('Tito', 'Milan');