Skip to content

Instantly share code, notes, and snippets.

@scripting
Last active May 20, 2025 17:16
Show Gist options
  • Save scripting/2857897ffe58bcb06362f00a7a72336a to your computer and use it in GitHub Desktop.
Save scripting/2857897ffe58bcb06362f00a7a72336a to your computer and use it in GitHub Desktop.
Daytona query for "matt mullenweg" in double-quotes.
select *, 
	match (textForSearch) against ('\"matt mullenweg\"') as relevance 
from blogposts 
where match (textForSearch) against ('\"matt mullenweg\"') 
order by relevance desc, whenCreated desc 
limit 100;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment