摘要: 关于sql语句中的连接(join)关键字,是较为常用而又不太容易理解的关键字,下面这个例子给出了一个简单的解释 --建表table1,table2: create table table1(id int,name varchar(10)) create table table2(id int,score int) insert into table1 select 1,'lee' insert i... 阅读全文
posted @ 2009-08-04 09:07 aisoon99 阅读(199) 评论(0) 推荐(0) 编辑