Solutions

Solution Exercice 1 :

CREATE DATABASE magasin;

USE magasin;

CREATE TABLE produits (
    id INT AUTO_INCREMENT PRIMARY KEY,
    nom VARCHAR(150),
    prix DECIMAL(10, 2),
    quantite INT
);

Solution Exercice 2 :

INSERT INTO produits (nom, prix, quantite) 
VALUES ('Ordinateur portable', 999.99, 10),
       ('Clavier mécanique', 89.90, 50),
       ('Souris sans fil', 45.00, 30);

Last updated