我有一个查询,只需从3个表中进行选择.
>从评论表中选择文章的所有评论
>从“用户ID”表中选择以查找它是哪种用户
>如果用户是一种类型,则搜索一个表… ELSE搜索另一表以获取最终信息.
我将如何处理?我对MySQL知识有些陌生,因此,我非常感谢您的耐心等待!
PS-让我知道是否不清楚…
谢谢!
最佳答案
好的,可以说类型条件是-
如果用户的类型为“ foo”,则搜索表为“ foovalues”,否则为搜索表“ finalvalues”.
假设表结构如下
原文链接:https://www.f2er.com/mysql/531962.html如果用户的类型为“ foo”,则搜索表为“ foovalues”,否则为搜索表“ finalvalues”.
假设表结构如下
Declare TestUserType varchar(3);
select * from Comments where ArticleID = <inputid>; //Returns the comments
select TestUserType = UserType from Users where UserID = <inputuser>; //Returns the usertype for a user and assigns it to a variable
if TestUserType = 'foo'
begin
select * from FooValues;
end
else
begin
select * from FinalValues;
end
免责声明:上面的sql应该可以在MysqL中使用,但是自从我在那个数据库上工作以来已经有一段时间了,我现在无法访问它,因此上面的sql可能会遇到语法错误.
您也可以将sql放在存储的proc中-如果您这样做是因为MysqL包含了有关分隔符的内容,那么您可能要注意-我在博客上发表了here