Base Table Update

How to update base table (data dictionary) automatically in every 5 sec or 5 min?

Questions by partha3112

Showing Answers 1 - 9 of 9 Answers

saikatrana

  • Feb 1st, 2009
 

If you want to update a base table you will have to run this command.
Suppose, my
base table is Student & its columns are Name&Age, then use this command to update:

update student
set Name='Graham',
Age=30;


Then all the records of the table will be updated containing name as "Graham'' & Age as 30
If you want to update only your desired columns against a defined column value follow the statement written below:


update student
set Name='Graham',
Age=30
where name='Carey';


  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions