79744782

Date: 2025-08-24 10:12:31
Score: 1
Natty:
Report link

Here are the multiple solutions to this problem, some of which are presented above.

SELECT * FROM robots WHERE name LIKE '%Robot 20%'
SELECT * FROM robots WHERE name LIKE '%Robot 20__%';
SELECT * FROM robots WHERE name LIKE '%20%';
SELECT * from robots WHERE name LIKE '%Robot 200%';
SELECT id, name FROM robots WHERE name LIKE '%Robot 20%' ORDER BY id;

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pbain