select phone from VIP_card where phone is not null;怎么把这个查出的数据导到电脑上
------解决方案--------------------------------------------------------
用工具pl/sql developer或者 sql developer都可以啊。
------解决方案--------------------------------------------------------
运行sqlplus:
执行如下语句
set heading on
set linesize 1000
set pagesize 0
set trimspool on
set trimout on
set timing off
set feedback off
set echo off
spool E:\S.txt
select phone from VIP_card where phone is not null;
spool off;
------解决方案--------------------------------------------------------
pl/sql developer:选中所需数据,右击-->导入execl
------解决方案--------------------------------------------------------
- SQL code
选取第三方工具,导出数据很方便!PL/SQL DEVELOPER,TOAD.等!
------解决方案--------------------------------------------------------
楼上几位正解啊,PL/SQL,右击、导入。
------解决方案--------------------------------------------------------
选取第三方工具,导出数据很方便!
PL/SQL DEVELOPER,TOAD都只需右击 》》保存为。。。!
------解决方案--------------------------------------------------------