how to update two tables in SQL EXPLORER

gashah510

New Member
Hi,

i am new to progress. i want to know how we can update two different tables using sql explorer.

Can any one help me out please ?
 
Hi

Well I am new also, but if you have SQL Explorer working properly, and that is the first step and hardest.

After that its

Insert INTO <tablename> (fields list) values (values list)
or
Update <tablename> set ,fieldname> = <value> where <idfield> = x

Hope that helps

Good Luck
 
Back
Top