SQL高级查询 -内连接 (inner) join 实战

select field1 from table1 inner join table2 on table1.field1=table2.field2; 举个例子: 表一:   表二:   /*查出所有网站的所有访问记录*/ select * from websites join access_log on websites.id=access_log.site_id order by acces
相关文章
相关标签/搜索