1 | <?php |
||
35 | class Insert extends StatementAbstract implements InsertStatementInterface |
||
36 | { |
||
37 | use ClauseTrait, IntoTrait, SetTrait; |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | protected $configs = [ |
||
43 | 'INTO' => 'INTO', |
||
44 | 'SET' => '', |
||
45 | 'VALUES' => 'VALUES', |
||
46 | ]; |
||
47 | |||
48 | /** |
||
49 | * INSERT ... SELECT |
||
50 | * |
||
51 | * {@inheritDoc} |
||
52 | */ |
||
53 | public function select( |
||
59 | |||
60 | /** |
||
61 | * {@inheritDoc} |
||
62 | */ |
||
63 | protected function getType()/*# : string */ |
||
67 | } |
||
68 |