4

我在 mMySQL 中有两个表:

 - news (news_id, news_titel, news_file_id)
 - files (file_id, file_path, file_name)

我想用这些列创建 MySQL VIEW:

- news_view (news_id, news_title, news_file_id, news_file_path)

但是,如果news_file_id > 0那时,我得到文件(file_path + file_name)的路径,否则news_file_path应该是0

我该怎么做这个视图?

编辑

但是如果我想再添加两个表怎么办:

categories (category_id, category_name)
users(user_id, user_name)

和表news改为

news (news_id, news_title, news_file_id, news_author_id, news_category_id)

news_author_id和 view 应该只显示带有指定,的帖子news_category_id,但news_file_path就像在原始问题中一样?

谢谢,保罗。

4

2 回答 2

7

试试下面:

 CREATE VIEW news_view  
   as (SELECT news_id, news_titel, news_file_id, 
       IF(news_file_id > 0, CONCAT(file_path, file_name), 0)
           AS news_file_path
       FROM news a LEFT JOIN files b
            ON a.news_file_id= b.file_id
         JOIN categories cat
            ON a.news_category_id = cat.category_id
         JOIN users u
            ON a.news_author_id = u.user_id
      );

根据需要添加where条件。

于 2012-10-21T18:12:20.463 回答
4

试试这个,你可以CASE根据你的情况使用,

CREATE VIEW myView
AS
SELECT  a.news_id, a.news_title,
        a.news_file_id,
        CASE 
            WHEN news_file_id = 0 THEN 0
            ELSE CONCAT(file_path, file_name)
        END news_file_path
FROM    news a
        LEFT JOIN files b
            ON a.news_file_id = b.file_id
于 2012-10-21T18:11:43.843 回答