Data cleaning

From LemonWiki共筆
Jump to navigation Jump to search

is null

Finds whether a variable is NULL

  • PHP is_null
  • Google spreadsheet:
    • ISERR(value) " value - The value to be verified as an error type other than #N/A." ex: #NULL!
    • If the value is exactly NULL not #NULL!, You may use EXACT(value, "NULL")
  • MySQL SQL syntax: SELECT * FROM table WHERE column IS NULL;[1]

Finds whether a variable is NOT NULL

  • MySQL SQL syntax: SELECT * FROM table WHERE column IS NOT NULL;

references