一些有用的SQL语句
发表于:2007-07-02来源:作者:点击数:
标签:
1:导入数据
imp80 system/manager@orcl file=D:TEMPdbfile1.dmp full=n fromuser=yh1 touser=yh2;
2:多表更新
update table1 a set a.column1=(select b.column1 from table2 b
where a.column2=b.2column2)
where a.column3 is not null;
原文转自:http://www.ltesting.net