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 authored and gleu committed May 27, 2016
1 parent bdb08d5 commit be3e395
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 @@ -3079,19 +3079,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 be3e395

Please sign in to comment.