Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个报告应用程序,用户可以选择一个日期范围,所有报告都使用相同的日期范围。我们目前为每个报告运行相同的查询,我认为这是不可行的,因为所有报告都需要相同的数据,并且每次都运行相同的查询没有意义。
有人对如何临时存储数据以供其他报告使用有任何建议吗?
是 MYSQL 还是 MSSQL?如果是 MSSQL,我建议使用临时表,然后您可以在另一个提交时删除该表。