我有一个权限表,字段为fr_user_name,这个字段只有当前登录者的用户名,我想在单元格中做判断,
判断当前登录者的用户名是否存在这个表中,在的话就yes不在的话就no,应该怎么写?
find($fine_username,value("demo",1))>0
demo为查询权限表的数据集名称,假如fr_user_name为第一列
返回true表示存在,返回false表示不存在
参考与数据库中数据对比校验 https://help.fanruan.com/finereport/doc-view-566.html
if(sql("frdemo","select count(1) from table where fr_user_name='"+fr_username+"'",1,1)>0,'yes','no')