InterviewSolution
Saved Bookmarks
| 1. |
Srishti has created the following table with the name'Veterinary'. Column NameConstraint Animalld Primary Key VaccinationDateAnimalNameNot NullOwnerNameOne of the rows inserted is as follows :AnimalldVaccinationDateAnimalNameStoreldA1012015-02-12SheruAmit Sharma(i) What are the data type of columns Animalld and Vaccination Date in the table Veterinary ?(ii) Srishti is now trying to insert the following row :AnimalldVaccinationDateAnimalNameOwnerNameA1022015-08-09NULLAbhimanyu ShahWill she be able to successfully insert it ? Give reason. |
|
Answer» (i) Animalld = char VaccinationDate = Date 2015-02-12 (ii) No, it will not be inserted as AnimalName column can't have NULL values. |
|