仅作为自己忘记时的查询
时间
now() 返回当前年-月-日 时:分:秒格式的时间
UNIX_TIMESTAMP() 当前的uninx时间戳
date_format(date,格式) date是年月日的时间,不能用时间戳
FROM_UNIXTIME(create_time,"%Y%m%d") 把时间戳-->时间
字符串
concat('str',字段,'str'),结果为连接参数产生的字符串,如有任何一个参数为null,则返回值为null
replace把字段的字符串替换 如:update ys_book set large_cover=replace(large_cover, 'spic', 'lpic')