Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query between multi-table DataSet

Status
Not open for further replies.

SBGibson

Programmer
Apr 18, 2001
125
IT
Maybe a strange question.
I'm developing a web application that need to use temporary tables to perform complex calculation on data.
I thought to use a multitable dataset where keeping record got from SQLServer and update them.
Those tables are connected between them and with others tables on the server by standard references such as id->r_id.
There a way to run an standard sql update command between dataset tables? And between a dataset table and an external table?
For example "UPDATE DSTABLE1 INNER JOIN DSTABLE2 ON DSTABLE1.R_ID = DSTABLE2.ID SET DSTABLE1.FIELD1 = DSTABLE1.FIELD1+DSTABLE2.FIELD1" or something like that.
Thank you in advance

Stevie B. Gibson
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top