sql
Posted 菜鸟木易
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql相关的知识,希望对你有一定的参考价值。
select video.videoid ,hong.name from video , hong where hong.name="小鸭" and video.hongid=hong.hongid
select a.videoid ,b.name from video a , hong b where b.name="小鸭" and a.hongid=b.hongid
select a.videoid,b.name from video a,hong b where a.hongid = b.hongid
select a.videoid,b.name from hong b left JOIN video a on a.hongid = b.hongid
以上是关于sql的主要内容,如果未能解决你的问题,请参考以下文章