示例#1
0
 public selectstatement(int top, bool distinct, selectlist fields, tableexpressions tables, joinstatements joins, whereclause where, groupbystatement group, whereclause having, orderbystatement order)
 {
     Top      = top;
     Distinct = distinct;
     Fields   = fields;
     Tables   = tables;
     Joins    = joins;
     Where    = where;
     GroupBy  = group;
     Having   = having;
     OrderBy  = order;
 }
示例#2
0
 public selectstatement(selectlist fields, tableexpressions tables, joinstatements joins, whereclause where, groupbystatement group, whereclause having, orderbystatement order)
     : this(0, false, fields, tables, joins, where, group, having, order)
 {
     //Top = 0;
     //Distinct = false;
     //Fields = fields;
     //Tables = tables;
     //Joins = joins;
     //Where = where;
     //GroupBy = group;
     //Having = having;
     //OrderBy = order;
 }
示例#3
0
 public insertselect(selectlist fields, tableexpressions tables, joinstatements joins, whereclause where, groupbystatement group, whereclause having, orderbystatement order)
     : base(fields, tables, joins, where, group, having, order)
 {
 }
示例#4
0
 public insertselect(int top, bool distinct, selectlist fields, tableexpressions tables, joinstatements joins, whereclause where, groupbystatement group, whereclause having, orderbystatement order)
     : base(top, distinct, fields, tables, joins, where, group, having, order)
 {
 }