2017-04-03 7 views

答えて

0

を使用して

begin; 
let count = select count(*) from Company; 
let companies = select from Company ORDER BY name ASC LIMIT 25 FETCHPLAN type:1 portfolios:1; 
commit; 
return [$count, $companies]; 

はこれを試してみてください:

begin; 
let count = select count(*) from Company; 
let companies = select name from Company ORDER BY name ASC LIMIT 25 FETCHPLAN type:1 portfolios:1; 
commit; 
return [$count, $companies]; 

はそれがお役に立てば幸いです。

よろしく、

のMichela

+0

はお返事する@のMichela-bonizziいただきありがとうございます。しかし、タイプとポートフォリオはフェッチされず、リースだけです –

関連する問題