Question

Configuring the data source to insert a new record into employee table would use which SQL statement?
a) Select * From employee
b) Insert Into employee (ssn, name, bdate) Values (?,?,?)
c) Update employee Set name = ?, bdate = ? Where ssn = ?
d) Delete From employee Where ssn = ?

Answer

This answer is hidden. It contains 1 characters.