This repository has been archived on 2025-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
nulib/php/src/db/_private/_select.php

18 lines
345 B
PHP

<?php
namespace nulib\db\_private;
class _select {
const SCHEMA = [
"prefix" => "?string",
"schema" => "?array",
"cols" => "?array",
"col_prefix" => "?string",
"from" => "?string",
"where" => "?array",
"order by" => "?array",
"group by" => "?array",
"having" => "?array",
"suffix" => "?string",
];
}