Back to Subject

Database Management

04 Data Manipulation Language

1 / 8
Score: 0
Question

Consider the below table structure: Column Name DataType Constraint Empname Varchar(20) Not Null EmpId int(10) PK Phoneno bigint(10) Not Null insert into employee(empid,empname)values('123','John'); When we issue the above insert command and if the statement fails, what would be the reason.

Select 2 answers