注册 登录
编程论坛 PowerBuilder

我是个新手刚接触PB请版主帮帮忙!谢谢!

huangpihua 发布于 2008-10-10 18:05, 1621 次点击
我现在要弄一个查询表具体如下:经过输入用户名来查询显示所有相关用户的基本资料.
用户名包括匹配的和莫糊的,例1: 用户名是:张三 点击查询则显示有关张三的基本资料;
例2:用户名是:李 点击查询则显示所有用户字段有"李"字所有用户的基本资料.
4 回复
#2
freele_china2008-10-11 11:05
as_name =  '张'

select  *
from   <表>
where  姓名  like  :as_name + '%'
#3
huangpihua2008-10-13 09:19
谢谢!版主的指点.
还望多多指教.
#4
wanpeng2008-10-31 11:42
string ls_name

if ls_name ='' or isnull(ls_name ) then
ls_name ='%'
else
ls_name=ls_name +'%'+ls_name
end if
dw_1.retrieve()//检索数据
#5
烈焰尊2008-11-03 13:56
select  * from table where  name  like  :as_name + '%'
1