程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> mysql存儲過程-MySql存儲過程裡 如何接收返回的多個結果

mysql存儲過程-MySql存儲過程裡 如何接收返回的多個結果

編輯:編程綜合問答
MySql存儲過程裡 如何接收返回的多個結果

BEGIN

DECLARE userNames varchar(500) DEFAULT ''; ##用戶名字
DECLARE sums int DEFAULT 0; 
DECLARE namess varchar(500) DEFAULT ''; 
DECLARE i int; 
set i = 0;
select count(*) into sums from book where price = 123;
##select name into namess from book where price = 123;##這個是錯誤的因為這條sql 返回的有多條數據

while i < sums 
DO          
    set i = i+1;
end while;

END

上述select 中 結果為:
id name price
1 aa 123
2 bb 123

我想把得到的多條數據中 name字段裡的值拿出來拼成 aa,bb 這樣的字符傳 怎麼做,請大家幫幫我.感激不盡

最佳回答:


$name = '';
$sql = "select name from book where price=123";
$que = mysql_query($sql) or die(mysql_error());
while($arr = mysql_fetch_assoc($que)){
$name .=','.$arr['name'];
}
echo substr($name,1);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved