Question

Configuring the data source to edit all the fields (except ssn) for a particular record from 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.