Update Data from one table to another table Archives - Tech Insights https://reactconf.org/category/update-data-from-one-table-to-another-table/ Unveiling Tomorrow's Tech Today, Where Innovation Meets Insight Fri, 14 Mar 2014 17:34:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.6.2 https://i0.wp.com/reactconf.org/wp-content/uploads/2023/11/cropped-reactconf.png?fit=32%2C32&ssl=1 Update Data from one table to another table Archives - Tech Insights https://reactconf.org/category/update-data-from-one-table-to-another-table/ 32 32 230003556 Update Data from one table to another table https://reactconf.org/update-data-from-one-table-to-another/ https://reactconf.org/update-data-from-one-table-to-another/#respond Fri, 14 Mar 2014 17:34:00 +0000 http://www.sqlneed.com/2014/03/14/update-data-from-one-table-to-another-table/ Oracle  Note :- Please take data backup before update. Update  (SELECT E.Maxsalary Emx,E.Minsalary Emn,       J.Max_salary Jmx,J.Min_salary Jmn                  From TestEmp E,                          Jobs J             Where E.Job_id=J.Job_id  ) …

The post Update Data from one table to another table appeared first on Tech Insights.

]]>
Oracle 


Note :- Please take data backup before update.

Update  (SELECT E.Maxsalary Emx,E.Minsalary Emn,

      J.Max_salary Jmx,J.Min_salary Jmn

                 From TestEmp E,

                         Jobs J

            Where E.Job_id=J.Job_id  )

Set Emx= Jmx,Emn=Jmn;

The post Update Data from one table to another table appeared first on Tech Insights.

]]>
https://reactconf.org/update-data-from-one-table-to-another/feed/ 0 2222