摘要: 用SQL语句,删除掉重复项只保留一条在几千条记录里,存在着些相同的记录,如何能用SQL语句,删除掉重复的呢1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断 select * from people where peopleId in (select peopleId fr 阅读全文
posted @ 2017-03-25 17:18 Frank_Lei 阅读(1674) 评论(0) 推荐(0) 编辑
摘要: select * from protype;select * from product; 笛卡尔连接查询(交叉连接)select * from protype,product;select * from protype cross join product; 标准写法 内链接查询select * f 阅读全文
posted @ 2017-03-25 16:43 Frank_Lei 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 1 -----创建一个序列,再创建一个表(主键是数字),通过序列生成该表的主键值。 2 create table mytb1( 3 m_id number primary key, 4 m_name varchar2(20) not null 5 ) 6 create sequence myseq2 7 start with 1001 ... 阅读全文
posted @ 2017-03-25 16:42 Frank_Lei 阅读(354) 评论(0) 推荐(0) 编辑