摘要:
select FROM_UNIXTIME(`createtime`, '%Y年%m月%d日')as retm,count(*) as num from `user` GROUP BY retm select FROM_UNIXTIME(`pay_tm`, '%Y/%m/%d::')as retm,s 阅读全文
摘要:
MySQL DELETE语句和TRUNCATE TABLE语句功能相似,但是二者究竟有何区别呢? DELETE可以按条件删除表中数据。 在没有条件时,DELETE FROM table1 (成功返回条数)或TRUNCATE TABLE table1(成功返回0) 都是清空表。 DELETE FROM 阅读全文