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.
我有一个名为的例程,sp_getalldata我只想从例程的结果集中选择 2 列。col1col2
sp_getalldata
col1
col2
我试过了
从(调用 sp_getalldata())中选择 col1、col2
但它是无效的。我有哪些选择?
您不能将存储函数用作 MySQL 中的数据源。MySQL 不支持表函数。您只能使用 SELECT 语句编写存储过程并调用该过程来输出结果集。