SQL Update value to null

anaylor01

Well-Known Member
Licensed User
Longtime User
How do you update a value in a column to null? I am trying the statement below but that doesn't work.
B4X:
      SQL1.ExecNonQuery2("UPDATE List Set List = 'NULL', Date = ? WHERE ID = ?", Array As String(DateTime.Date(now),i))
 
Top