Obtener únicamente la fecha de un DATETIME MySQL

Obtener únicamente la fecha de un DATETIME MySQL

SELECT DATE_FORMAT(fecha, ‘%T’), date(fecha) FROM tabla; select * from tabla where DATE_FORMAT(fecha, ‘%T’) <> ’00:00:00′ update tabla set fecha = date(fecha);

Leer el artículo →