现在又3张表:文件表 人员表 类型表
文件表:id title content userid typeid
人员表:id user
类型表:id type
我想做到做一个试图显示title content user type
请问大虾们怎么做呢?
小弟感激不尽
oracle建视图
答案:2 悬赏:70 手机版
解决时间 2021-05-23 08:48
- 提问者网友:温旧梦泪无声
- 2021-05-22 14:47
最佳答案
- 五星知识达人网友:怀裏藏嬌
- 2021-05-22 16:06
create or replace view 试图名 as
select distinct
a.title, a.content, b.user, c.type
from 文件表 a,人员表 b,类型表 c
where a.userid=b.userid
and a.typeid=c.typeid;
全部回答
- 1楼网友:迷人又混蛋
- 2021-05-22 16:13
CREATE VIEW T(`title`,`content`,`user`,`type`) AS SELECt `title`,`content`,`user`,`type` FROM 文件名,人员表,类型表.
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯