Skip to content

Commit

Permalink
[sql/fr] fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Th3G33k committed Apr 27, 2024
1 parent c994116 commit 851e866
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fr-fr/sql-fr.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ SELECT DISTINCT title FROM titles ORDER BY title;
SELECT * FROM departments WHERE dept_no = 'd001' OR dept_no = 'd002';

-- Identique qu'au-dessus.
SELECT * FROM departments WHERE dept_no IN ('d001', 'd0002');
SELECT * FROM departments WHERE dept_no IN ('d001', 'd002');

-- Le contraire d'au-dessus.
SELECT * FROM departments WHERE dept_no NOT IN ('d001', 'd0002');
SELECT * FROM departments WHERE dept_no NOT IN ('d001', 'd002');

-- Sélectionne dans un intervalle donné.
SELECT * from departments WHERE dept_no BETWEEN 'd001' AND 'd0002';
SELECT * from departments WHERE dept_no BETWEEN 'd001' AND 'd002';

-- Indique le nombre de lignes dans la table departments.
SELECT COUNT(*) FROM departments;
Expand Down

0 comments on commit 851e866

Please sign in to comment.