摘要:
SQL Server T-SQL高级查询 高级查询在数据库中用得是最频繁的,也是应用最广泛的。 Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 selec 阅读全文
摘要:
Oracle(+)号用法 select * from t_A a,t_B b where a.id=b.id(+); select * from t_A a left join t_B b on a.id = b.id; + 表示补充,即哪个表有加号,这个表就是匹配表。如果加号写在右表,左表就是全部 阅读全文
摘要:
oracle的start with connect by prior是根据条件递归查询"树",分为四种使用情况: 第一种:查询结果自己所有的后代节点(包括自己) start with 子节点ID='...' connect by prior 子节点ID = 父节点ID select * from m 阅读全文
摘要:
1.函数。 select reverse(123456) from dual; select reverse('123456') from dual; 2.关键字。 declare v number; c number; begin v:=100; for c in reverse 1 .. v l 阅读全文
摘要:
在oracle中复制表结构和表数据: 1、复制表结构及数据: create table new_table as select * from old_table 2、只复制表结构: create table new_table as select * from old_table where 1<> 阅读全文