|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Monday, May 06, 2013 5:25 AM
Points: 93,
Visits: 93
|
|
I have a table which has some n no of rows. The table has Key, value1, value2, value3, etc fields. Now i need to insert a row which should be derived from the existing rows.
eg: below are the data in the table
Key Value1 Value2 Value3 ky010 100 150 90 ky020 150 200 10 ky030 580 400 10 ky040 160 100 10 ky050 110 250 10 ky060 190 280 10 ky070 350 270 10
I need to insert a row as below ky055 310 50 -10
the Value1, 2 and 3 are derived from the rows ky030 - ky040 - ky050
If it addition i can simply write SELECT 'ky055', SUM(Value1), SUM(Value2), SUM(Value3) FROM table_name WHERE Key in (ky030,ky040,ky050)
but i need to subtract the rows... Can anyone help me to find a query to generate the value
|
|
|
|
|
UDP Broadcaster
      
Group: General Forum Members
Last Login: Today @ 6:47 PM
Points: 1,467,
Visits: 920
|
|
Please read this. http://www.sqlservercentral.com/articles/Best+Practices/61537/
Here is a query that will make THIS specific example work. It rely's on your Key column to be ordered correctly. If the order of your keys is guaranteed then fine, but I would seriously look at the design of this table and data storage strategy before worrying about creating these queries.
DECLARE @Table TABLE ([KEY] Varchar(10),Value1 INT, Value2 INT, Value3 INT)
INSERT INTO @Table SELECT 'ky010', 100, 150, 90 UNION ALL SELECT 'ky020', 150, 200, 10 UNION ALL SELECT 'ky030', 580, 400, 10 UNION ALL SELECT 'ky040', 160, 100, 10 UNION ALL SELECT 'ky050', 110, 250, 10 UNION ALL SELECT 'ky060', 190, 280, 10 UNION ALL SELECT 'ky070', 350, 270, 10
SELECT 'ky055', SUM(CASE WHEN ID =1 THEN Value1 ELSE Value1 * -1 END), SUM(CASE WHEN ID =1 THEN Value2 ELSE Value2 * -1 END), SUM(CASE WHEN ID =1 THEN Value3 ELSE Value3 * -1 END) FROM ( SELECT RANK() OVER(ORDER BY [Key]) AS id, [Key], Value1, Value2, Value3 FROM @table WHERE [Key] in ('ky030','ky040','ky050') )t
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Monday, May 06, 2013 5:25 AM
Points: 93,
Visits: 93
|
|
Thanks Ray, Its working... Also the article is nice once. I will follow that....
|
|
|
|