sql insert record with null values

Solutions on MaxInterview for sql insert record with null values by the best coders in the world

showing results for - "sql insert record with null values"
Roberto
31 Jun 2018
1INSERT INTO agents
2VALUES ("A001","Jodi","London",.12,NULL);
3