how can i return these in this order:
1: aaaa
2: bbbb
3: the cccc
4: dddd
So ignoreing the leading ‘the’
currently im using.
select * from houses order by name asc
and its returning it in this order.
1: aaaa
2: bbbb
3: dddd
4: the cccc
Thanks
If you want to remove the
thefor the order by then you can use:See SQL Fiddle with Demo
Or:
See SQL Fiddle with Demo
Or even use this following:
See SQL Fiddle with Demo