摘要:
select创建表 oracle: create table table2 as (select * from table1); sqlserver: select * into table2 from table1;递归查询 oracle: connect by select ... from <TableName> where <Conditional-1> start with <Conditional-2> connect by <Conditional-3> sqlserver: cte ;with cte(id, name, pid, 阅读全文
posted @ 2012-11-27 23:05
surfsky
阅读(1021)
评论(0)
推荐(0)
浙公网安备 33010602011771号