view.sql

来自「Delphi6开发的HIS程序」· SQL 代码 · 共 5 行

SQL
5
字号
create or replace view v_doctor as
select doctor.doctorid, doctor.sectionofficeid, doctor.doctorcatalogid, employee.cname, tollstation.tollstationid
from doctor, employee, tollstation
where doctor.employeeid = employee.employeeid and
      doctor.sectionofficeid = tollstation.sectionofficeid;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?