Re: find any row with NULL

2016-07-29 Thread Hal.sz S.ndor
... Now - would searching, saving/storing then removing NULL vs ALLbutNULL in a simple DB with one table wich has only primary key be sa ... What is "removing NULL"? Deleting the record with NULL? It has no bearing on the primary key, because NULL never is allowed in one. It seems to me that

MySQL Community Server 5.7.14 has been released

2016-07-29 Thread hery . ramilison
Dear MySQL users, MySQL Server 5.7.14, a new version of the popular Open Source Database Management System, has been released. MySQL 5.7.14 is recommended for use on production systems. Since MySQL Server 5.7.13, we have introduced the concept of Rapid Plugins. Out of the box, 5.7.14 follows

MySQL Community Server 5.6.32 has been released

2016-07-29 Thread Prashant Tekriwal
Dear MySQL users, MySQL Server 5.6.32, a new version of the popular Open Source Database Management System, has been released. MySQL 5.6.32 is recommended for use on production systems. For an overview of what's new in MySQL 5.6, please see

Re: find any row with NULL

2016-07-29 Thread Johan De Meersman
- Original Message - > From: "lejeczek" > Subject: Re: find any row with NULL > ok, whereas that fist example was about all (and find > columns' names without knowing) columns - would there be a > simple(r) syntax to find that (not)NULLs in a list of given > column

Re: find any row with NULL

2016-07-29 Thread Johan De Meersman
- Original Message - > From: "lejeczek" > Subject: Re: find any row with NULL > > shame NULL won't work as in: > > select user_id,completetion_time from depression where > NULL in(email_me, other_diagnosis); > or does it? No, because NULL != NULL - it is why there

Re: find any row with NULL

2016-07-29 Thread lejeczek
On 09/07/16 14:13, Hal.sz S.ndor wrote: 2016/07/08 09:15 ... Johan De Meersman: You will have to repeat all the column names - no wildcards in where clause fieldnames - but the clause you're looking for is WHERE field IS NULL. Or IS NOT NULL if you want those:-) Well, one could try this: