我以日期格式7-2-2014
其中mysql格式为2014-01-08 11:45:04
我想使用表格7-2-2014
employees
搜索结果
要在mysql中编写什么查询?
答案 0 :(得分:1)
此功能用于转换日期格式,根据您的要求设置参数
select * from employees where DATE_FORMAT(date_from_table,'%d-%m-%Y')= your_date;
在此链接中看到这将对您有所帮助http://www.w3schools.com/sql/func_date_format.asp
答案 1 :(得分:0)
SELECT * FROM employees WHERE '7-2-2014'= DATE_FORMAT(`date_col`,"%e-%c-%Y");