How To Insert Into A Table Join Other Table Using Activerecord In Codeigniter?
I'm new to CodeIgniter and ORM, I hope you guys can help me with this. The question table: CREATE TABLE `question` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varc
Solution 1:
Don't do that, instead use the primary key (id) to insert directly into the base table.
Post a Comment for "How To Insert Into A Table Join Other Table Using Activerecord In Codeigniter?"