catfan / Medoo

The lightweight PHP database framework to accelerate the development.
https://medoo.in
MIT License
4.83k stars 1.15k forks source link

Does ORDER BY support "ORDER BY state = 0 DESC"? #611

Closed imageslr closed 7 years ago

imageslr commented 7 years ago

I tried to select from a table and I wanted to make columns of which state is 0 at the top of results, so I used the statement in title. Does medoo support that statement?

imageslr commented 7 years ago

Thanks, I have solved this problem by using quote() to build a sql string.