Home > Database > Mysql Tutorial > 浅析一个MYSQL语法(在查询中使用count)的兼容性问题

浅析一个MYSQL语法(在查询中使用count)的兼容性问题

WBOY
Release: 2016-06-07 16:17:01
Original
874 people have browsed it

本篇文章是对MYSQL语法(在查询中使用count)的兼容性问题进行了详细的分析介绍,需要的朋友参考下 简单来说就是在查询中使用count以及更多字段 复制代码 代码如下: select count(id),id,name from table 很尴尬的,我的环境是5.5的,这个是能获取到结果的,但

本篇文章是对MYSQL语法(在查询中使用count)的兼容性问题进行了详细的分析介绍,需要的朋友参考下

 

简单来说就是在查询中使用count以及更多字段

复制代码 代码如下:


select count(id),id,name from table 


很尴尬的,我的环境是5.5的,这个是能获取到结果的,但是运行到服务器就不行了
好吧,报了一个错误

复制代码 代码如下:


#1140 - Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause  


在5.x是可以用的,不过其它字段的值只是获取到第一条的信息,好吧,我承认这是一个偏门的写法,,无实际意义,可能是新手的一个语法结构思路不清晰所致。
好吧,作为一个新人,我还是明智的使用WAMP的版本切换功能切换过去吧

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template