Normal table or global temp table?
问题 Me and another developer are discussing which type of table would be more appropriate for our task. It's basically going to be a cache that we're going to truncate at the end of the day. Personally, I don't see any reason to use anything other than a normal table for this, but he wants to use a global temp table. Are there any advantages to one or the other? 回答1: Use a normal table in tempdb if this is just transient data that you can afford to lose on service restart or a user database if