Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

297
Views
How to order by use in codeigniter

My table data is like that

ID NAME order
1 English 0
2 Italian 1
3 Spanish 2
4 Hindi 1
5 Bengali 3
6 Tamil 2

my query

    $this->db->select('*');
    $this->db->from('languages');
    $this->db->order_by('order','asc');
    $query = $this->db->get();

I want data like this order-1,1,2,2,3,0

ID NAME order
2 Italian 1
4 Hindi 1
3 Spanish 2
6 Tamil 2
5 Bengali 3
1 English 0
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Try this:

create table order_1(
id int(4),
name varchar(20),
`order` int(3) );

insert into order_1 values (1,'English',0), (2,'Italian',1), (3,'Spanish',2),(4,'Hindi',1),(5,'Bengali',3),(6,'Tamil',2);


SELECT * FROM order_1 ORDER BY `order`= 0, `order`;

enter image description here

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!