16 lines
488 B
PHP
16 lines
488 B
PHP
<?php
|
|
namespace ProVM\Concept\Database\Query;
|
|
|
|
use ProVM\Concept\Database\Query;
|
|
|
|
interface Select extends Query
|
|
{
|
|
public function select(array $columns = ['*']): Select;
|
|
public function from(string $table): Select;
|
|
public function joins(array $joins): Select;
|
|
public function where(array $conditions): Select;
|
|
public function groupBy(array $grouping): Select;
|
|
public function having(array $having): Select;
|
|
public function orderBy(array $ordering): Select;
|
|
}
|