Suppose that I have a Table Symbols(Symbol, Value) and a Table SymbolValues (Symbol, Value) which contains a list of values for the symbol. How to choose maximum values fromt he SymbolValues table and insert into Symbols table. For Example, The SymbolValues Table has following values

A 1
A 2
A 3
B 6
B 7

Then only A 3 and B 7 should be inserted in the Symbols table.

Is this possible using insert into select statement.

Thanks

link|improve this question

42% accept rate
feedback

2 Answers

Something like this:

insert into symbols(symbol,value)
  (select symbol, max(value) from symbolvalues group by symbol);
link|improve this answer
2  
I think you should group by symbol – BobbyShaftoe Mar 18 '10 at 15:21
@BobbyShaftoe yes, of course; I'll correct the example – David Gelhar Mar 18 '10 at 19:00
feedback

You could modify your select query to be something like:

SELECT v.symbol, v.value
FROM SymbolValues v
WHERE NOT EXISTS (SELECT * FROM SymbolValues v2 WHERE v2.symbol = v.symbol AND v2.value > v.value)
link|improve this answer
I think you mean "AND v2.value > v.value" – David Gelhar Mar 18 '10 at 19:02
@David Gelhar, yes, thank you. :) – BobbyShaftoe Mar 20 '10 at 4:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.