Class Report for: AQL Queries
Various
select all class author where .name like "Loc*"
select a,c from p in class participant where exists_tag p->Photo, a in class Author where a.name like p, c in count(select p->Photo) order by :a
select a from a in class Author where exists_tag a->E_mail order by :a
select g,c,d,e from g in class Gene_locus where exists_tag g->TremblExtra, c in count(select g->Trembl), d in count(select g->TremblExtra), e in count(select g->Gene_name)
select a, tit, yea from a in class Paper, yea in a->Year where yea like "201*", tit in a->Title order by :yea
select a from a in class Author where a.name like "C*" and exists_tag a->E_mail
|
|