Lines Matching refs:Query
85 ## Structure of a SQL Query
94 ## SQL Query TableGen
125 class Query <string table, dag query_fields = (all), dag condition = (none)> {
134 Then the Query class. Its arguments are:
141 ## Using The Query Class
146 def : Query<"Customer">;
148 def : Query<"Orders", (fields "Person", "Amount")>;
150 def : Query<"Customer", (fields "Affiliation"),
153 def : Query<"Orders", (fields "ProductName"),
156 def : Query<"Orders", (fields "ProductName":$name, "Person"),
166 def : Query<"Orders", (fields "ProductName":$name, "Person"),
202 "Query": [
228 "Query"
258 "Query"
297 "Query"
341 "Query"
385 "Query"
518 {'Query': ['anonymous_0', 'anonymous_1', 'anonymous_2', 'anonymous_3', 'anonymous_4']}
521 …s. Here this is a list of all instances of certain classes. We just have `Query` which lists all t…
528 ['Query']
547 Here we're going to loop over all defs of type `Query` and emit SQL queries for them.
557 # If we inherit from Query.
558 if "Query" in value["!superclasses"]: