-- position:显示hello在字符串第一个出现的位置。
select position('ckhelloworldhellospark','hellow') AS positionSearch;
-- match:匹配到了则返回1,否则返回0
select match('ckhelloworldhellospark','hello') AS matchSearch;