unemployment Posted April 30, 2011 Share Posted April 30, 2011 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 More sharing options...
fugix Posted April 30, 2011 Share Posted April 30, 2011 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.