biblio
This commit is contained in:
@@ -283,32 +283,9 @@ create table region (
|
||||
insert into region values
|
||||
(1, 'Est'), (2, 'Ouest'), (3, 'Nord'), (4, 'Sud'), (5, 'Centre');
|
||||
|
||||
CREATE TABLE genres (
|
||||
genre_id int primary key,
|
||||
genre text
|
||||
);
|
||||
|
||||
INSERT INTO genres (genre_id, genre) VALUES
|
||||
(1,'Science-Fiction'),
|
||||
(2,'Fantasy'),
|
||||
(3,'Young adult'),
|
||||
(4,'Bit-lit'),
|
||||
(5,'Policier'),
|
||||
(6,'Romance'),
|
||||
(7,'Espionnage'),
|
||||
(8,'Aventure'),
|
||||
(9,'Fantastique'),
|
||||
(10,'Historique'),
|
||||
(11,'Noir'),
|
||||
(12,'Biographie'),
|
||||
(13,'Cyberpunk'),
|
||||
(14,'Steampunk');
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Banque
|
||||
-- ----------------------------------------------------------------------
|
||||
create table personne (
|
||||
id bigint generated always as identity,
|
||||
id bigint primary key generated always as identity,
|
||||
prenom text,
|
||||
nom text,
|
||||
telephone text,
|
||||
|
||||
Reference in New Issue
Block a user