author | Emile Anclin <emile.anclin@logilab.fr> |
Thu, 02 Apr 2009 11:50:42 +0200 | |
changeset 1212 | 76de1c3aaef3 |
parent 1211 | 90bb6e89e356 |
child 1215 | 9db3648c476d |
child 1218 | 680a8fe589a8 |
--- a/doc/book/en/C040-rql.en.txt Thu Apr 02 11:42:58 2009 +0200 +++ b/doc/book/en/C040-rql.en.txt Thu Apr 02 11:50:42 2009 +0200 @@ -140,6 +140,14 @@ X is Person, X name N, X first_name P + Note: You can not specify several types with * ... where X is FirstType or X is SecondType*. + To specify several types explicitely, you have to do + + :: + + Any X where X is in (FirstType, SecondType) + + Insertion query ---------------