0
I’m having a doubt that seems silly but I can’t seem to solve
I have a table with the following fields
IdInstallation(bigint)|NameInstallation(varchar(255))|IdGroup(FK(bigint))
I would like to make the following query in this table
SELECT IdInstallation, NameGroup from myTable where IdGroup = NULL
However this query does not return me anything :/
What I should put in place of NULL ?