Hi Guys,I have a quick question.I have 2 tables and the main columsn are the following:ts_performance - Performance_id, performance_start_date, performance_description, performance_name, performance_series_id, ts_series - series_id, series_name, series_descriptionThe tables are connected on ts_performance.performance_series_id and ts_series.series_id. I can bring the combined data like this. select performance_start_date, performance_description, series_description, performance_name, performance_series_id, series_name, series_description from ts_performanceinner join ts_series on ts_performance.performance_series_id = ts_series.series_idwhere performance_start_date > '2012-06-20 14:00:00.000'
My intension is to update the performance_description field in ts_performance with series_description in ts_series.The way I can think of it is creating a table with performance_id, performance_description and series_description from the above data set.and update the ts_performance table with the update.Is there another way to acheive that without creating a middle table. Thanks for your time.Regards,Shiyam