sql server 2008 r2 - SQL Like statement is ordering results -


can please explain why simple sql statement cause results ordered column being 'liked'...

select * organisation company_name '%marce%' 

the above cause results ordered company name...

select * organisation 

will show results in index / id order.

order not guaranteed without explicitly using order by clause. it's arbitrary. there exist index on field, responsible 'natural' ordering of results, shouldn't relied upon.


Comments

Popular posts from this blog

mongodb - Struggling to get ordered results from the last retrieved article, given array of elements to search in -

c# - Pausing a storyboard on TabItem mouse over -

c# - Attribute value in root node of xml Linq to XML -