select * from word where customer_id=null
Dovrebbe essere
select * from word where customer_id IS NULL
Vedi questo sito nel manuale:http:// dev.mysql.com/doc/refman/5.7/en/working-with-null.html
Un modo per evitare la soluzione alternativa nella tua istruzione sarebbe impostare un indice univoco su quelle colonne, se i tuoi casi d'uso consentono il vincolo. http://dev.mysql.com/doc/refman /5.7/en/create-index.html