’abc’ LIKE ’abc’ -- 返回true’abc’ LIKE ’a%’ -- 返回trueto_char() 把时间戳转换成字符串语法to_char(timestamp, text)示例to_char(create_date, 'YYYY/MM/DD')to_char(create_date, ’HH12:MI:SS’)to_date() 把字符串转换成日期语法to_date(text, text)