Home  >  Article  >  Backend Development  >  Mysql查询满足三个条件内中一个是最大时间的所有行

Mysql查询满足三个条件内中一个是最大时间的所有行

WBOY
WBOYOriginal
2016-06-13 12:17:061166browse

Mysql查询满足三个条件其中一个是最大时间的所有行
表table结构如下:


查询语句:
SELECT * FROM table WHERE dtime = (select max(dtime) from final) and customer = 'test' AND nbname = 'Dell XPS 13'
什么都查询不出来

但是把where中的dtime=(...)这一段去掉后就有结果出来。
加入这一段后就匹配不到结果。
怎么修改呢。
------解决思路----------------------
你看看 select max(dtime) from final 得到的是什么?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn