文章表a,用户表 b,访问表 c
  create view test as 
  select c.记录标号,a.文章代号,a.文章题目,b.姓名,c.评论 from
  a, b, c where c.用户代号=b.用户代号(+)  and c.文章代号=a.文章代号(+);