求教几个PowerBuilder基础问题,非常着急用。请高手帮忙!

来源:百度知道 编辑:UC知道 时间:2024/06/04 03:08:43
1.PB提供的3种数据输入方式分别为:_____________、____________和________________。
2.PB用于图形表达的数据有______________、______________和______________三种.
3.成功的沟通是______________。
4.管理沟通行为导向策略是________________。
5.请写出名为dw_1向数据库提交数据的基本语法!
6.说名可能导致数据库表被锁定的死锁的原因!
select * from employer where a.emp_dep_code in (select dep_code from depart where dep_team_no>15)
该语句执行的时候效率底下,如何修改以后可以提高执行效率?

5.if dw_1.update()=1 then
commit;
end if
6.数据量大查找太慢,没有设置索引

select * from employer,depart
where emp_dep_code=dep_code
and dep_team_no>15

另外,建emp_dep_code和dep_code的索引,可以加快查询速度