Update Schedule table in SQL

Question:

Update Schedule table

Contains the run and evaluate script of Oracle DML. Can be used as example

Write a query to change the destination to ‘Coimbatore’ where schedule id is S4 in schedule table.

Update Schedule table in SQL

CODE:

update schedule set destination='Coimbatore' where schedule_id ='S4';

rdbms programs | rdbms programs with output | rdbms programming languages | rdbms database program

Sharing Is Caring

Leave a Comment