I was just wondering which approach is better.
- Creating a complex select query with many - CASE WHEN THEN ... ELSE ... ENDstatements or sub queries in select clause.
- Create a temp table and then insert and update it. Finally - select * from @tempTable
This question is only for complex queries not for simple joins or just when some small info has to be picked from other ta开发者_运维技巧ble.
For ease and speed of development, 2 in my experience.
For performance - it depends on the number of rows and tables you're joining and retrieving back. In memory temporary tables (as it looks like you're suggesting) have an overhead, which is obviously the memory they're using.
I'd stick to number 2 as mentioned, unless you're working with Walmart sized data then worry about performance if it becomes a problem - "Hardware is cheap, writing software is expensive"
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论