Mysql
 sql >> Database >  >> RDS >> Mysql

CodeIgniter Seleziona Query

È abbastanza semplice. Ad esempio, ecco un mio codice casuale:

function news_get_by_id ( $news_id )
{

    $this->db->select('*');
    $this->db->select("DATE_FORMAT( date, '%d.%m.%Y' ) as date_human",  FALSE );
    $this->db->select("DATE_FORMAT( date, '%H:%i') as time_human",      FALSE );


    $this->db->from('news');

    $this->db->where('news_id', $news_id );


    $query = $this->db->get();

    if ( $query->num_rows() > 0 )
    {
        $row = $query->row_array();
        return $row;
    }

}   

Questo restituirà la "riga" che hai selezionato come array in modo da potervi accedere come:

$array = news_get_by_id ( 1 );
echo $array['date_human'];

Consiglio vivamente anche di non incatenare la domanda come fai tu. Tienili sempre separatamente come nel mio codice, che è chiaramente molto più facile da leggere.

Tieni inoltre presente che se specifichi il nome della tabella in from(), chiami la funzione get() senza un parametro .

Se non hai capito, chiedi pure :)