KnowledgeBoat Logo

Computer Science

What is the error in following statement ?

UPDATE EMPL ;

DDL & DML

3 Likes

Answer

The error in the statement UPDATE EMPL; is that it is incomplete. The UPDATE command specifies the rows to be changed using the WHERE clause and the new data using the SET keyword. Therefore, the statement is incomplete as it lacks both the SET and WHERE clauses.

Answered By

2 Likes


Related Questions