0% found this document useful (0 votes)
28 views1 page

Query

This SQL statement updates the schedulehour and schedulemin fields in the report_schedule table to values of 10 for all records where the report ID is in a subquery that selects the ID from the report table for reports with a DBID of 10.

Uploaded by

Naser Naseer
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

Query

This SQL statement updates the schedulehour and schedulemin fields in the report_schedule table to values of 10 for all records where the report ID is in a subquery that selects the ID from the report table for reports with a DBID of 10.

Uploaded by

Naser Naseer
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

update report_schedule set schedulehour=10,schedulemin=10 where reportid in (se lect id from report where dbid=10);

You might also like