Hi,
MySQL is a very fast, multi-threaded, multi-user and robust SQL
(Structured Query Language) database server. What's New in This Release:
Functionality added or changed: . ONLY_FULL_GROUP_BY no longer is
included in the ANSI composite SQL mode. (Bug #8510) . mysqld_safe will
create the directory where the UNIX socket file is to be located if the
directory does not exist. T... [ read more about MySQL >> ] 

http://www.softpedia.com/progDownload/MySQL-for-Windows-Download-2668.ht
ml


Best Regards
--------------------
Mathias FATENE
 
Hope that helps
*This not an official mysql support answer
 


-----Original Message-----
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Harald Fuchs
Sent: samedi 30 avril 2005 00:00
To: mysql@lists.mysql.com
Subject: ONLY_FULL_GROUP_BY too strict on MySQL 4.1.11


I'm using MySQL 4.1.11 with sql-mode=ONLY_FULL_GROUP_BY set in my.cnf.
This disallows things like

  SELECT col1, col2, sum(col1)
  FROM tbl
  GROUP BY col1

as it should, and it allows

  SELECT col1, sum(col1)
  FROM tbl
  GROUP BY col1

but it also disallows

  SELECT col1, sum(col1) + 1
  FROM tbl
  GROUP BY col1

which is perfectly legal SQL AFAIK.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to