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 存储过程在其上创建了一个临时表。现在我想从临时表中获取所有数据。我该怎么做?请帮助我。
Call your_sp_name; /* so data could insert into temp table*/ SELECT * FROM temp_table_name;