From df07e3c336f28f153df641049f7955bf3ad9bf05 Mon Sep 17 00:00:00 2001 From: Nathan <nat.che@hotmail.fr> Date: Wed, 26 Feb 2020 11:22:04 +0100 Subject: [PATCH] =?UTF-8?q?requ=C3=AAtes=20SQL=20de=20la=20partie=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Seance1/partie2.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Seance1/partie2.sql diff --git a/Seance1/partie2.sql b/Seance1/partie2.sql new file mode 100644 index 0000000..d49b84d --- /dev/null +++ b/Seance1/partie2.sql @@ -0,0 +1,20 @@ +-- Partie 2-- + +-- 1 + +select id, name from game where name like '%mario%'; + +-- 2 + +SELECT id, name from company where location_country = 'Japan'; + +-- 3 + +select id, name from platform where install_base >= 10000; + +-- 4 + +select name, deck from game order by name; + +-- 5 +select id, name from game where id > 21173 LIMIT 442; -- GitLab