标签: mysql sql
查看时间函数但需要帮助来转换时间
“18:00:00”到下午6点的SQL语言。
答案 0 :(得分:2)
您可以将字符串转换为time,然后使用date_format()将值转换为字符串:
time
date_format()
select date_format(cast('18:00:00' as time), '%h %p')