79250297

Date: 2024-12-04 08:14:38
Score: 0.5
Natty:
Report link

Try use OR in your WHERE clause with N'...' for HTML Entities, like this:

SELECT * FROM @temp 
WHERE string LIKE N'%☑%' 
OR string LIKE N'%🎃%' 
OR string LIKE N'%🍰%'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Dmitry Shashurov