So fügen Sie eine Where -Klausel zum aktiven Datensatz von Codesigniter hinzu

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: So fügen Sie eine Where -Klausel zum aktiven Datensatz von Codesigniter hinzu

by Anonymous » 06 May 2025, 09:36

Code: Select all

$data = array(
'vlc.*',
'sysinfo_cluster.*'
);

$this->db->select($data);
$this->db->from('vlc');
$this->db->join('sysinfo_cluster', 'vlc.DATE=sysinfo_cluster.DATE', 'inner');
< /code>
Ich muss hinzufügen, wo abfragt wie < /p>
where vlc.CLUSTER_CHANNEL="padang"

Top