DATABASE MANAGEMENT SYSTEM
Identify the error?
DELETE ALL FROM TABLE EMP;
Ans-There is no need to write ALL and TABLE word in above query.
Correct form is-DELETE FROM EMP;
Identify the error?
DELETE ALL FROM TABLE EMP;
Ans-There is no need to write ALL and TABLE word in above query.
Correct form is-DELETE FROM EMP;
0 Comments