CodeIgniter Forums
Query Builder : remove an ORDER BY clause from a query ? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Query Builder : remove an ORDER BY clause from a query ? (/showthread.php?tid=61386)



Query Builder : remove an ORDER BY clause from a query ? - djsuperfive - 04-12-2015

Hi,

is there a method to remove an ORDER BY clause to a query that has been previously added to the same query ?

thanks


RE: Query Builder : remove an ORDER BY clause from a query ? - mwhitney - 04-13-2015

I don't believe there is, unless you're willing to reset the whole query ($this->db->reset_query()). You should probably consider delaying the addition of the ORDER BY clause until you can determine whether it should be included, rather than trying to remove it later in the code.