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.
是否可以将带有结果视图的过程的 o/p 分配给过程中的临时表。请告知如何做到这一点。谢谢。
You can use
INSERT INTO temp_table (SELECT * FROM view_name);