谁能告诉我怎么在VF表单的代码中使用变量?

2024-12-27 18:41:02
推荐回答(1个)
回答1:

select 姓名 from 学生号码表 where 号码=xm into cursor 'temp'
改成:
select 姓名 from 学生号码表 where alltrim(号码)=xm into cursor 'temp'
试试