par
fila » 04 mars 2006, 18:14
Merci ! voici ce que tu me demandes :
Code : Tout sélectionner
CREATE TABLE clt (
rang int(11) NOT NULL ,
nom varchar(50) NOT NULL,
prenom varchar(50) NOT NULL,
capital varchar(50) NOT NULL,
nb__point_ajoute(50) NOT NULL
);
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'dupont', 'jean','10','40');
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'durant', 'jpaul','12','42');
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'duduche', 'jeanne','9','30');
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'dupontel', 'albert','19','50');
Merci par avance

Merci ! voici ce que tu me demandes :
[code]
CREATE TABLE clt (
rang int(11) NOT NULL ,
nom varchar(50) NOT NULL,
prenom varchar(50) NOT NULL,
capital varchar(50) NOT NULL,
nb__point_ajoute(50) NOT NULL
);
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'dupont', 'jean','10','40');
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'durant', 'jpaul','12','42');
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'duduche', 'jeanne','9','30');
INSERT INTO clt (nom,prenom,capital, nb_point_ajoute) VALUES ( 'dupontel', 'albert','19','50');
[/code]
Merci par avance :)