Question

Configuring the data source to remove all the fields for a particular record in 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.