convert sql |
Hi guys how can I convert the value of integer to text, example if it is 0 to display not paid and 1 to display paid
On model //get chart public function invoice_chart() { $res = $this->db->query("select payment_status as status, count(*) as total from invoice group by status"); return $res->result_array(); } |
Messages In This Thread |
convert sql - by Tajar_Dobro - 09-20-2021, 04:19 AM
RE: convert sql - by nfaiz - 09-20-2021, 05:44 AM
RE: convert sql - by ikesela - 09-20-2021, 10:28 AM
RE: convert sql - by Tajar_Dobro - 09-20-2021, 11:53 PM
RE: convert sql - by paulkd - 09-21-2021, 12:51 AM
RE: convert sql - by includebeer - 09-21-2021, 03:21 PM
|