resetSequence() public method
Creates a SQL statement for resetting the sequence value of a table's primary key.
The sequence will be reset such that the primary key of the next new row inserted will have the specified value or 1.
public string resetSequence ( $table, $value = null ) | ||
---|---|---|
$table | string |
The name of the table whose primary key sequence will be reset |
$value | array|string |
The value for the primary key of the next new row inserted. If this is not set, the next new row's primary key will have a value 1. |
return | string |
The SQL statement for resetting sequence |
throws | yii\base\NotSupportedException |
if this is not supported by the underlying DBMS |
Please login to continue.