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
Post a Comment