我的数据库中有三个表 用户,帖子和评论。
他们的结构如下:
**users** :
user_id , user_name
**posts**:
post_id , post_content, user_id
**comments** :
comment_id , comment_content , post_id, user_id
现在我想通过以下方式使用join从这三个表中获取数据: comment_id,comment_content,user_id,user_name,post_id 任何人都可以告诉我如何做到这一点? 我会非常感激。
答案 0 :(得分:1)
这是一个简单的.slider_test {
width: 600px;
height: 300px;
}
.slide_test {
position: relative;
height: 100%
}
.slide_img_link {
position: absolute;
width: 100%;
height: 100%;
}
.slide_img {
height: 100%;
width: 100%;
}
.bottom_part {
position: absolute;
height: 50%;
width: 50%;
bottom: 0;
}
.bottom_text1 {
background-color: red;
vertical-align: top;
width: auto;
bottom: 0;
display: inline-block;
}
.bottom_text1 h4 {
margin: 0;
}
.bottom_text2 {
background-color: aqua;
vertical-align: top;
width: auto;
bottom: 0;
display: inline-block;
}
。
试试这个:
<div class="slider_test">
<div class="slide_test">
<a class="slide_img_link" href="http://google.com">
<img src="cat.png" class="slide_img">
</a>
<div class="bottom_part">
<div class="bottom_text1"><h4>Header</h4>
</div>
<div>
<div class="bottom_text2">
<p1>Description</p1>
</div>
</div>
</div>
</div>
</div>
如果您还需要帖子表中的列,请加入:
JOIN