leedude Posted August 7, 2006 Share Posted August 7, 2006 is there a way i can selectively update columns like i can with the insert command:update table1 set (page,title,dsc) = (1,"Page 1","This is Page 1") where id = 4;(this is excluding the id column from the update).This produces an error, is there a way i can do this like i can insert data:?insert into table1 (page,title,dsc) values (1,"Page 1","This is Page 1")plz help. Quote Link to comment Share on other sites More sharing options...
AndyB Posted August 7, 2006 Share Posted August 7, 2006 [code]$query = "UPDATE table1 SET (page,title,doc) VALUES('1','Page 1','This is Page 1') where id = '4')";[/code] Quote Link to comment Share on other sites More sharing options...
fenway Posted August 7, 2006 Share Posted August 7, 2006 Really?!? I didn't know that syntax was even possible. Quote Link to comment Share on other sites More sharing options...
leedude Posted August 7, 2006 Author Share Posted August 7, 2006 thankyou thankyou thankyou!!!!!!!!!!!!!!!!!!;D ;D ;D ;D ;D ;D ;D ;D Quote Link to comment Share on other sites More sharing options...
leedude Posted August 7, 2006 Author Share Posted August 7, 2006 or actually not...It still brings an error. :-\And i cant help noticing that there appears to be an extra close-bracket at the end. Quote Link to comment Share on other sites More sharing options...
fenway Posted August 7, 2006 Share Posted August 7, 2006 Well, you can always try the old-fashioned way:[code]$query = "UPDATE table1 SET page = '1', title = 'Page 1' , doc = 'This is Page 1' where id = '4'";[/code] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.