I am trying to use Order by after the following query
$this->remote_jobs->get_many_by($jobs_params);
right now above query result is
SELECT * FROM hm_jobs WHERE company_id = '1' AND user_id = '6'
I want to add order by within this query... how I will do it?
I am trying to use Order by after the following query
$this->remote_jobs->get_many_by($jobs_params);
right now above query result is
SELECT * FROM
hm_jobsWHEREcompany_id= '1' ANDuser_id= '6'I want to add order by within this query... how I will do it?