Having some difficulty figuring out "and" statements as i am quite new to GIS. What errors am I making in this statement here?
STATUS = 'QC Required' and WORKFROMHOMEEMPLOYEES = 'NULL'
Having some difficulty figuring out "and" statements as i am quite new to GIS. What errors am I making in this statement here?
STATUS = 'QC Required' and WORKFROMHOMEEMPLOYEES = 'NULL'
Use is Null to select Null values. By using = 'NULL' you select a string containing this word. So use:
STATUS = 'QC Required' and WORKFROMHOMEEMPLOYEES IS NULL
and WORKFROMHOMEEMPLOYEES is null– BERA May 26 '22 at 16:04NULL– Midavalo May 26 '22 at 16:25