- Code: Select all Expand view
- SELECT * from vll_term WHERE WORT LIKE '%' + UNHEX('C39F') + '%'
The result is not as expected, maybe there is something wrong with the syntax?
The Google answer is:
ChatGPT:
The correct syntax is therefore:
- Code: Select all Expand view
- SELECT * FROM vll_term WHERE WORT LIKE CONCAT('%', UNHEX('C39F'), '%');
The answer was very helpful for me