In SQL, what code is correct for the insert a new seller?
In SQL, what code is correct for the insert a new seller? A. INSERT INTO tblseller VALUES(101, ‘meta’) WHERE sid = NULL B. INSERT tblseller VALUES(101, ‘meta’) WHERE sid = NULL C. INSERT INTO tblseller(sid, name) VALUES(101, ‘meta’) D. None…