-5

我想从两个表中获取数据join,我的表是

myLearning具有以下给定字段:

用户名、内容 ID、添加日期、状态

目录

类别、描述、标题、content_ID

我需要从两个表中以这种格式输出

user_Name,description,title 其中 content_ID =?

4

3 回答 3

0
SELECT  a.user_name, b.description, b.title
FROM    myLearning a
        INNER JOIN catalog b
            ON a.content_ID = b.content_ID

要进一步了解有关联接的更多信息,请访问以下链接:

于 2013-03-19T07:06:05.937 回答
0

实际上非常基本:

select * from myLearning, catalog where myLearning.content_ID = catalog.content_ID
于 2013-03-19T07:06:30.823 回答
0

试试这个:

  SELECT ml.user_name,cat.description,cat.title 
  FROM mylearning as ml
  LEFT JOIN catalog cat ON cat.content_id=ml.content_id

希望它会有所帮助!

于 2013-03-19T07:08:04.570 回答