我想使用join
从两个表中获取数据,我的表是
myLearning ,其中包含以下字段:
user_Name,content_ID,added_Date,status
和目录表
类别,描述,标题,content_ID
我需要从这两个表中以这种格式输出
user_Name,description,title where content_ID =?
答案 0 :(得分:0)
SELECT a.user_name, b.description, b.title
FROM myLearning a
INNER JOIN catalog b
ON a.content_ID = b.content_ID
要进一步了解联接,请访问以下链接:
答案 1 :(得分:0)
实际上非常基本:
select * from myLearning, catalog where myLearning.content_ID = catalog.content_ID
答案 2 :(得分:0)
试试这个:
SELECT ml.user_name,cat.description,cat.title
FROM mylearning as ml
LEFT JOIN catalog cat ON cat.content_id=ml.content_id
希望它会有所帮助!