I insert many rows into the database, and some of the columns are empty for some rows .
How can I insert without assigning a dummy value to these empty fields?
1 INSERT Leads VALUES('name', 'cityName', 5, 'anotherValue') 2 INSERT Leads VALUES('name', 'cityName', , 'anotherValue') 3 INSERT Leads VALUES('name', 'cityName', 2, 'anotherValue') 4 INSERT Leads VALUES('name', 'cityName', 9, 'anotherValue')
My problem is line 2 where there is an empty value between the city name and another value. Ideally, I want the value to remain zero.
Any help is appreciated.
Thanks!
source share