Skip to content

Commit

Permalink
Trad Enum et cohérence de l'exemple
Browse files Browse the repository at this point in the history
Trad Enum et cohérence de l'exemple
  • Loading branch information
Hadrien45 committed May 27, 2016
1 parent 6492a82 commit 748e210
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions postgresql/datatype.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3103,19 +3103,19 @@ SELECT * FROM personne WHERE humeur_actuelle = 'heureux';

<programlisting>
INSERT INTO personne VALUES ('Larry', 'triste');
INSERT INTO personne VALUES ('Curly', 'heureux');
INSERT INTO personne VALUES ('Curly', 'ok');
SELECT * FROM personne WHERE humeur_actuelle > 'triste';
nom | humeur_actuelle
-------+-----------------
Moe | happy
Moe | heureux
Curly | ok
(2 rows)

SELECT * FROM personne WHERE humeur_actuelle > 'triste' ORDER BY humeur_actuelle;
nom | humeur_actuelle
-------+--------------
Curly | ok
Moe | happy
Moe | heureux
(2 rows)

SELECT nom
Expand Down

0 comments on commit 748e210

Please sign in to comment.