Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update Table with a "Select query" with a where clause

I want to achieve the following:

Current State of table (my_table)

 id        totalX          totalY          totalZ               
 --------- --------------  --------------  --------------       
         9             34              334             0      
        10              6               56             0      
        11             21              251             0      
        12              3               93             0   

Query result of (my_table2)

select id,count(*) as total FROM my_table2 WHERE column_2 = 1 GROUP BY id

 id        total               
 --------- --------------       
         9            500      
        10            600      
        11            700      
        12            800  

Expected State of table (my_table)

 id        totalX          totalY          totalZ               
 --------- --------------  --------------  --------------       
         9             34              334             500      
        10              6               56             600      
        11             21              251             700      
        12              3               93             800    

Can this be done in ONE update query ? I am looking for Sybase ASE 12.5 on a RHEL 5.0

EDIT: I coudn't find the solution for Sybase, but the current answer to the question works on MS SQL Server..

like image 559
Stewie Avatar asked Sep 23 '10 15:09

Stewie


1 Answers

   update 
          my_table 
   set 
      my_table.totalZ = t.total 
   FROM
    my_table mt
    INNER JOIN 
       (select id,count(*) as total 
       FROM my_table2 
      WHERE column_2 = 1 GROUP BY id) t
   on mt.id  = t.id

UPDATE In MS SQL Server this is what you would do. The OP noted this doesn't work in Sybase.

like image 51
Conrad Frix Avatar answered Oct 20 '22 09:10

Conrad Frix