Update namespaces
This commit is contained in:
15
src/Define/Query/Select.php
Normal file
15
src/Define/Query/Select.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?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;
|
||||
}
|
Reference in New Issue
Block a user