Pages

▼
Showing posts with label Join Table. Show all posts
Showing posts with label Join Table. Show all posts
Friday, June 30, 2017

How to select two additional columns from another table based on values in the base table

›
Below is sample SQL showing how we can use additional columns from another table based on value of base table. SELECT base_table.id,...
Wednesday, June 21, 2017

MySQL Update Table Using Join Of Other Tables | MySQL Join Table On Update

›
UPDATE table1 AS t1 LEFT JOIN table2 AS t2 ON (t1.t2_id = t2.id) SET t1.some_field = t1.some_field + 1  WHERE t1.id in (1,2,3) AND t2.som...
›
Home
View web version
Powered by Blogger.