mysql - ALTER TABLE tbl AUTO_INCREMENT = 123 as codeigniter active records query? -


how execute

alter table tblname auto_increment = 123 

as codeigniter active records query?

there called dbforge->modify_column() in codeigniter , have use that, if how?

$this->db->query('alter table tbl_name auto_increment 1'); working me.


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -