Per prima cosa, ottieni il contenuto della prima tabella tableFrom
e scorrere i risultati per inserirli in tableTo
. Puoi usare questo codice nel tuo modello. Non dimenticare $this->load->database();
nel tuo controller o in funzione.
function insert_into() {
$q = $this->db->get('tableFrom')->result(); // get first table
foreach($q as $r) { // loop over results
$this->db->insert('tableTo', $r); // insert each row to another table
}
}
@MODIFICA
Prova questo codice per il tuo controller:
<?php
class fdm extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->library(array('table','form_validation'));
$this->load->helper('url'); // load model
$this->load->model('cbc','',TRUE);
}
function index() {
$this->load->database();
$this->load->model('cbc','',TRUE);
$this->cbc->insert_into();
}
}
Per correggere l'errore con la voce duplicata per la chiave 1 potresti voler troncare la prima tabella prima di importare il contenuto dalla tabella due. Puoi farlo con:
function insert_into() {
$this->db->truncate('tableTo');
$q = $this->db->get('tableFrom')->result(); // get first table
foreach($q as $r) { // loop over results
$this->db->insert('tableTo', $r); // insert each row to another table
}
}
Oppure potresti aggiornare le righe invece di inserirne di nuove:
function insert_into() {
$q = $this->db->get('tableFrom')->result(); // get first table
foreach($q as $r) { // loop over results
$this->db->update('tableTo', $r, array('id' => $r->id)); // insert each row to another table
}
}