摘要:
drop table if exists news; --如果存在表则删除create table news --创建表( id int unsigned not null auto_increment, title varchar(30) not null default '' comment ' 阅读全文
摘要:
left join 用于多表 >1个表比如select a.*,b.* from ta as a left join tb as b on a.aid=b.bid咱们就以实际的代码来查看一下.请看此链接建一个表. http://www.php20.com/forum.php?m ... =220&e 阅读全文