Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
KELBERT Paul
ApplicationsBD_CHEVALIER_TONDON_KELBERT
Commits
df07e3c3
Commit
df07e3c3
authored
Feb 26, 2020
by
Nathan
Browse files
requêtes SQL de la partie 2
parent
4501d52d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Seance1/partie2.sql
0 → 100644
View file @
df07e3c3
-- 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
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment