Code Monkey home page Code Monkey logo

locations-films's Introduction

Locations-films

Mise en place d'une base de données qui permettra de digitaliser tout le système d'une entreprise de location de film à l'aide d'un Relational Database Management System (RDBMS).

  1. une requête pour ajouter un film --> INSERT INTO film (id_film, titre_film, date_sortie, duree_film, realisateur) VALUES ('', '', '', '', '', '');

  2. une requête pour modifier un film --> UPDATE film SET id_film = '', titre_film = '', date_sortie = '', duree_film = '', realisateur = '' WHERE film.id_film = 1;

  3. une requête pour supprimer un film --> DELETE FROM film WHERE film.id_film = 1;

  4. une requête pour ajouter un client --> INSERT INTO clients (id_clients, nom_clients, prenom_clients, email_clients) VALUES ('', '', '', '');

  5. une requête pour modifier un client --> UPDATE clients SET id_clients = NULL, nom_clients = '', prenom_clients = '', email_clients = '' WHERE clients.id_clients = 1;

  6. une requête pour supprimer un client --> DELETE FROM clients WHERE clients.id_clients = 1;

  7. une requête pour afficher les 3 derniers films ajoutés --> SELECT * FROM films ORDER BY id_films DESC LIMIT 3;

locations-films's People

Contributors

sylvioslv avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.