1 | <?php |
||
42 | class Select extends StatementAbstract implements SelectStatementInterface |
||
43 | { |
||
44 | use ClauseTrait, ColTrait, FromTrait, WhereTrait, JoinTrait, |
||
45 | GroupByTrait, HavingTrait, OrderByTrait, LimitTrait, UnionTrait; |
||
46 | |||
47 | /** |
||
48 | * {@inheritDoc} |
||
49 | */ |
||
50 | protected $configs = [ |
||
51 | 'DISTINCT' => '', |
||
52 | 'COL' => '', |
||
53 | 'FROM' => 'FROM', |
||
54 | 'JOIN' => '', |
||
55 | 'WHERE' => 'WHERE', |
||
56 | 'GROUPBY' => 'GROUP BY', |
||
57 | 'HAVING' => 'HAVING', |
||
58 | 'ORDERBY' => 'ORDER BY', |
||
59 | 'LIMIT' => 'LIMIT', |
||
60 | 'UNION' => '', |
||
61 | ]; |
||
62 | |||
63 | /** |
||
64 | * {@inheritDoc} |
||
65 | */ |
||
66 | protected function getType()/*# : string */ |
||
70 | } |
||
71 |