I would like to show a query result displaying titles which contain Summer festival and Summer festivals ordered first in the list of records.
This very basic SQL query gives following result:
SELECT title FROM items
title
-----------------
Just a test
Just another test
New test
Testing
Summer festival
Summer festivals
My goal is to display the result as following:
title
-----------------
Summer festival
Summer festivals
Just a test
Just another test
New test
Testing