|
hash | cop_append (any column, string arg) |
| returns a hash for the "append" operator with the given argument More...
|
|
hash | cop_as (any column, string arg) |
| returns a hash for the "as" operator with the given argument More...
|
|
hash | cop_avg (any column) |
| returns a hash for the "avg" operator; returns average column values More...
|
|
hash | cop_cast (any column, string arg, *any arg1, *any arg2) |
| returns a hash for the "cast" operator with the given argument(s) More...
|
|
hash | cop_coalesce (any col1, any col2) |
| returns a hash for the "coalesce" operator with the given column arguments; the first non-NULL column value will be returned More...
|
|
hash | cop_count (any column="") |
| returns a hash for the "count" operator; returns row counts More...
|
|
hash | cop_distinct (any column) |
| returns a hash for the "distinct" operator with the given argument; returns distinct column values More...
|
|
hash | cop_divide (any column1, any column2) |
| returns a hash for the "/" operator with the given arguments More...
|
|
hash | cop_lower (any column) |
| returns a hash for the "lower" operator with the given argument; returns a column value in lower case More...
|
|
hash | cop_max (any column) |
| returns a hash for the "max" operator; returns maximum column values More...
|
|
hash | cop_min (any column) |
| returns a hash for the "min" operator; returns minimum column values More...
|
|
hash | cop_minus (any column1, any column2) |
| returns a hash for the "-" operator with the given arguments More...
|
|
hash | cop_multiply (any column1, any column2) |
| returns a hash for the "*" operator with the given arguments More...
|
|
hash | cop_over (any column, string arg) |
| returns a hash for the "over" clause More...
|
|
hash | cop_plus (any column1, any column2) |
| returns a hash for the "+" operator with the given arguments More...
|
|
hash | cop_prepend (any column, string arg) |
| returns a hash for the "prepend" operator with the given argument More...
|
|
hash | cop_seq (string seq, *string as) |
| returns a hash for the "seq" operator with the given argument giving the sequence name whose value should be returned More...
|
|
hash | cop_seq_currval (string seq, *string as) |
| returns a hash for the "seq_currval" operator with the given argument giving the sequence name whose current value should be returned More...
|
|
hash | cop_substr (any column, int start, *int count) |
| returns a hash for the "substr" operator with the given arguments; returns a substring of a column value More...
|
|
hash | cop_sum (any column) |
| returns a hash for the "sum" operator; returns the total sum of a numeric column. More...
|
|
hash | cop_upper (any column) |
| returns a hash for the "upper" operator with the given argument; returns a column value in upper case More...
|
|
hash | cop_value (any arg) |
| returns a hash for the "value" (literal) operator with the given argument More...
|
|
hash | cop_year (any column) |
| returns a hash for the "year" operator with the given argument More...
|
|
hash | cop_year_day (any column) |
| returns a hash for the "year_day" operator with the given argument More...
|
|
hash | cop_year_hour (any column) |
| returns a hash for the "year_hour" operator with the given argument More...
|
|
hash | cop_year_month (any column) |
| returns a hash for the "year_month" operator with the given argument More...
|
|
hash | iop_seq (string arg) |
| returns a hash for retrieving the value of the given sequence in insert queries More...
|
|
hash | iop_seq_currval (string arg) |
| returns a hash for retrieving the current value of the given sequence in insert queries More...
|
|
hash | join_inner (AbstractTable table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for standard inner joins with the given arguments More...
|
|
hash | join_inner (Table table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for standard inner joins with the given arguments More...
|
|
hash | join_inner (string table_name, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for standard inner joins with the given arguments More...
|
|
hash | join_inner (string ta, AbstractTable table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for standard inner joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_inner (string ta, Table table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for standard inner joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_inner_alias (string ta, string table_name, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for standard inner joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_left (AbstractTable table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for left outer joins with the given arguments More...
|
|
hash | join_left (Table table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for left outer joins with the given arguments More...
|
|
hash | join_left (string table_name, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for left outer joins with the given arguments More...
|
|
hash | join_left (string ta, AbstractTable table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for left outer joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_left (string ta, Table table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for left outer joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_left_alias (string ta, string table_name, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for left outer joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_right (AbstractTable table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for right outer joins with the given arguments More...
|
|
hash | join_right (Table table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for right outer joins with the given arguments More...
|
|
hash | join_right (string table_name, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for right outer joins with the given arguments More...
|
|
hash | join_right (string ta, AbstractTable table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for right outer joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_right (string ta, Table table, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for right outer joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | join_right_alias (string ta, string table_name, *string alias, *hash jcols, *hash cond, *hash opt) |
| returns a hash for right outer joins with the given arguments for use when joining with a table other than the primary table More...
|
|
hash | make_cop (string cop, any column, any arg) |
| returns a hash with cop , column , and arg keys More...
|
|
hash | make_iop (string iop, any arg) |
| returns a hash with _iop and arg keys More...
|
|
hash | make_jop (string jop, AbstractTable table, *string alias, *hash jcols, *hash cond, *string ta, *hash opt) |
| returns a hash keyed with the table name assigned to a hash with jop , table , jcols , cond , alias , and ta keys More...
|
|
hash | make_jop (string jop, string table_name, *string alias, *hash jcols, *hash cond, *string ta, *hash opt) |
| returns a hash keyed with the table name assigned to a hash with jop , table , jcols , cond , alias , and ta keys More...
|
|
hash | make_op (string op, any arg) |
| returns a hash with op and arg keys
|
|
hash | make_uop (string uop, any arg, *hash nest) |
| returns a hash with uop , arg , and nest keys More...
|
|
hash | op_between (any l, any r) |
| returns a hash for the "between" operator with the given arguments, neither of which can be NULL or NOTHING; for use in where clauses More...
|
|
hash | op_ceq (string arg) |
| returns a hash for the "=" operator with the given argument for use in where clauses when comparing the values of two columns More...
|
|
hash | op_cge (string arg) |
| returns a hash for the ">=" operator with the given argument for use in where clauses when comparing the values of two columns More...
|
|
hash | op_cgt (string arg) |
| returns a hash for the ">" operator with the given argument for use in where clauses when comparing the values of two columns More...
|
|
hash | op_cle (string arg) |
| returns a hash for the "<=" operator with the given argument for use in where clauses when comparing the values of two columns More...
|
|
hash | op_clt (string arg) |
| returns a hash for the "<" operator with the given argument for use in where clauses when comparing the values of two columns More...
|
|
hash | op_cne (string arg) |
| returns a hash for the "!=" or "<>" operator with the given argument for use in where clauses when comparing the values of two columns More...
|
|
hash | op_eq (any arg) |
| returns a hash for the "=" operator with the given argument for use in where clauses when comparing column values to immediate values More...
|
|
hash | op_ge (any arg) |
| returns a hash for the ">=" operator with the given argument for use in where clauses when comparing column values to immediate values More...
|
|
hash | op_gt (any arg) |
| returns a hash for the ">" operator with the given argument for use in where clauses when comparing column values to immediate values More...
|
|
hash | op_in () |
| returns a hash for the "in" operator with all arguments passed to the function; for use in where clauses More...
|
|
hash | op_in (list args) |
| returns a hash for the "in" operator with the given argument list as the first argument; for use in where clauses More...
|
|
hash | op_le (any arg) |
| returns a hash for the "<=" operator with the given argument for use in where clauses when comparing column values to immediate values More...
|
|
hash | op_like (string str) |
| returns a hash for the "like" operator with the given argument for use in where clauses More...
|
|
hash | op_lt (any arg) |
| returns a hash for the "<" operator with the given argument for use in where clauses when comparing column values to immediate values More...
|
|
hash | op_ne (any arg) |
| returns a hash for the "!=" or "<>" operator with the given argument for use in where clauses when comparing column values to immediate values More...
|
|
hash | op_not (hash arg) |
| returns a hash for the "not" operator; for use in where clauses More...
|
|
hash | op_substr (int start, *int count, string text) |
| returns a hash for the "substr" operator with the given arguments; for use in where clauses More...
|
|
hash | op_substr (int start, string text) |
| returns a hash for the "substr" operator with the given arguments; for use in where clauses More...
|
|
hash | uop_append (string arg, *hash nest) |
| returns a hash for the "append" or concatenate operator with the given argument More...
|
|
hash | uop_divide (any arg, *hash nest) |
| returns a hash for the "/" operator with the given arguments More...
|
|
hash | uop_lower (*hash nest) |
| returns a hash for the "lower" operator with the given argument; returns a column value in lower case More...
|
|
hash | uop_minus (any arg, *hash nest) |
| returns a hash for the "-" operator with the given arguments More...
|
|
hash | uop_multiply (any arg, *hash nest) |
| returns a hash for the "*" operator with the given arguments More...
|
|
hash | uop_plus (any arg, *hash nest) |
| returns a hash for the "+" operator with the given arguments More...
|
|
hash | uop_prepend (string arg, *hash nest) |
| returns a hash for the "prepend" operator with the given argument More...
|
|
hash | uop_seq (string seq) |
| returns a hash for the "seq" operator with the given argument giving the sequence name whose value should be returned More...
|
|
hash | uop_seq_currval (string seq) |
| returns a hash for the "seq" operator with the given argument giving the sequence name whose current value should be returned More...
|
|
hash | uop_substr (int start, *int count, *hash nest) |
| returns a hash for the "substr" operator with the given arguments; returns a substring of a column value More...
|
|
hash | uop_upper (*hash nest) |
| returns a hash for the "upper" operator with the given argument; returns a column value in upper case More...
|
|
hash | wop_or (hash h1, hash h2) |
| returns a hash with a fake "_OR_" column name; the list of arguments to the function is combined such that each hash in the list generates SQL expressions combined with "and" logic, and each of those clauses is combined with "or" logic; this is for use in where clauses More...
|
|