Skip to content

Instantly share code, notes, and snippets.

View masterofthesith's full-sized avatar
💭
there is no escape!

Darth Vader masterofthesith

💭
there is no escape!
View GitHub Profile
@masterofthesith
masterofthesith / gist:ce1e9b9c21d144f2a550a77744e1e31d
Created June 24, 2024 12:27
Mysql'de arama yaparken birebir eşleşen sonucun en önde gelmesi
#Birebir eşleşenin en önde gelmesi
select * from tablo where field LIKE '%query%' order by (field = 'query'), length(field)
#Eşleşme sırasına göre birebir eşleşenden daha aza doğru sonuçların gelmesi
select * from tablo where field LIKE '%query%' order by (field like 'query%'), length(field)