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