虚心太阳

文章
3
资源
0
加入时间
2年10月18天

oracle 查询数据的结果集导出

1.需求说明查询特定表(含条件),并把其结果集(一千多万的数据)进行导出。2.使用技术就是就是spool,代码如下:spool /user/result.txt select phone from t_mt where state_true='0'; spool off其中/user/result.txt 为结果集的输出文件。3.因为需求要循环查询,就创建.sh文件,以test.sh为例,执行:vi test.sh复制下列代码到test.sh中。#!/bin/shexport O

python函数的5种参数详解

(1) 位置参数,调用函数时按位置传入参数 (2) 默认参数,即在函数定义时就给出参数的值,设置默认参数时要