删除重复数据
DELETE t1 FROM invest_year t1, invest_year t2 WHERE t1.pro_id = t2.pro_id AND t1.pro_year = t2.pro_year AND t1.id > t2.id;
自关联,保留id最小的那一条,其它的都删除
DELETE t1 FROM invest_year t1, invest_year t2 WHERE t1.pro_id = t2.pro_id AND t1.pro_year = t2.pro_year AND t1.id > t2.id;
自关联,保留id最小的那一条,其它的都删除
SELECT product_brand FROM shop_product WHERE LENGTH(product_brand)>...
1.date型转换成int型 UNIX_TIMESTAMP('2007-10-04 22:23:00') 2.int型转换成date型 FROM_UNIXTIME(97599...
设置my.cnf : auto-rehashmysql>use mysql; #这是关键...
select count(id),字段from 表名 group by字段 having count(字段)>1;...
update 表名 SET log_Content = REPLACE(log_Content,'"upload','"/upload')...
减去一天SELECT DATE_SUB(CURDATE(), INTERVAL 1 DAY);减去一个小时hour(now())-1...