In MySQL, what is the purpose of contains? can anyone give me it's usage with example? -


i checked online resources use of contains in mysql, couldn't find anything. tried following query in db.

select * test_table contains (column_a, 'a');, returned error 3055 (hy000): geometry byte string must little endian..

mysql doesn't have contains keyword. if want achieve should use like keyword. eg.

select * sometable field '%something%' 

Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -