This is simplified version of insert query
| Name | Type | Description | Required |
|---|---|---|---|
| table | string | Table name | yes |
| columns | array | string | Your specified columns, can be string for single column or array for multi column | yes |
| values | array | string | Your column values, can be string for single value or array for multi value | yes |
Output : bool
Static or normal : Static
mysql::insert('users', 'id', 123456789);mysql::insert('users', ['column1', 'column2', 'column3', 'column4'], ['value1', 'value2', 'value3', 'value4']);