我想从两个表中获取数据join
,我的表是
myLearning具有以下给定字段:
用户名、内容 ID、添加日期、状态
和目录表
类别、描述、标题、content_ID
我需要从两个表中以这种格式输出
user_Name,description,title 其中 content_ID =?
SELECT a.user_name, b.description, b.title
FROM myLearning a
INNER JOIN catalog b
ON a.content_ID = b.content_ID
要进一步了解有关联接的更多信息,请访问以下链接:
实际上非常基本:
select * from myLearning, catalog where myLearning.content_ID = catalog.content_ID
试试这个:
SELECT ml.user_name,cat.description,cat.title
FROM mylearning as ml
LEFT JOIN catalog cat ON cat.content_id=ml.content_id
希望它会有所帮助!