mixed pq\Gateway\Table::create([array $data = NULL[, string $returning = "*"]])

Create a row in the table.

Params:

Returns:

Example:


<?php

use pq\Gateway\Table;

$accounts = new Table("account");
$mike $accounts->create(["name" => "mike"])->current();

?>