Jump to content

Update 2 Tables


unemployment

Recommended Posts

Can I update two tables in 1 update query? capitalavailable belongs to the iQuestions table, not the companies table

 

$sql = "UPDATE `companies` SET

`companyname` = '${name}',

`companytag` = '${tag}',

`companywebsite` = '${website}',

`industry` = '${industry}',

`stage` = '${stage}',

`country` = '${country}',

`state` = '${state}',

`city` = '${city}',

`capitalavailable` = '{$capitalavailable}'

WHERE `companytag` = '${ctag}'";

Link to comment
https://forums.phpfreaks.com/topic/235152-update-2-tables/
Share on other sites

i will do a couple so you can understand how to do this..

$sql = "UPDATE companies, iQuestions SET
                                 companies.companyname = '${name}',
                                 companies.companytag = '${tag}',
                                 companies.companywebsite = '${website}',
                                 companies.industry = '${industry}',
                                 companies.stage = '${stage}',
                                 companies.country = '${country}',
                                 companies.state = '${state}',
                                 companies.city = '${city}',
                                 iQuestions.capitalavailable = '{$capitalavailable}'
                              WHERE companies.companytag = '${ctag}'";

 

hope this helps

 

Link to comment
https://forums.phpfreaks.com/topic/235152-update-2-tables/#findComment-1208653
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.