Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
atulbharadwaj
Starting Member
11 Posts |
Posted - 2009-12-15 : 00:21:01
|
| hi, can someone add result of two sql statement through procedureselect Max(sep) as Sep1 from pricescoreselect Max(sep) as Sep from Earningscorei need result = Sep1 + Sepatul |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2009-12-15 : 02:03:15
|
| orselect(select Max(sep) as Sep1 from pricescore)+(select Max(sep) as Sep from Earningscore)MadhivananFailing to plan is Planning to fail |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
|
|
|