Database

出自VFP Wiki

(修訂版本間差異)
跳轉到: 導航, 搜尋
第1行: 第1行:
 +
[[category:VFPFAQ]]
====如何取代資料表中某一欄位的資料====
====如何取代資料表中某一欄位的資料====
第13行: 第14行:
====如何刪除資料表中某一欄位====
====如何刪除資料表中某一欄位====
使用 ALTER TABLE 指令.
使用 ALTER TABLE 指令.
 +
 +
====如何匯出資料表格成文字檔====
 +
=====之一=====
 +
<pre>
 +
use your_table
 +
copy to your_table.txt type sdf
 +
* 或者 copy to your_table.txt type csv 亦可
 +
</pre>
 +
=====之二=====
 +
狐友green提供:
 +
<pre>
 +
set printer to c:\out.txt
 +
set print on
 +
? .....
 +
? .....
 +
set print off
 +
set print to
 +
</pre>
 +
=====之三=====
 +
狐友Jack許提供,先用 select-sql 處理,再 copy to
 +
<pre>
 +
SELECT SNO+','+REMARK FROM DBF_CURSOR
 +
COPY TO abc.txt SDF
 +
</pre>

在2006年9月29日 (五) 14:17所做的修訂版本


目錄

如何取代資料表中某一欄位的資料

用 REPLACE ... WITH ... 指令. 例如:

REPLACE your_field WITH your_value ALL

REPLACE your_field WITH your_value FOR your_condition

如何刪除資料表中某一欄位

使用 ALTER TABLE 指令.

如何匯出資料表格成文字檔

之一
use your_table
copy to your_table.txt type sdf
* 或者 copy to your_table.txt type csv 亦可
之二

狐友green提供:

set printer to c:\out.txt
set print on
? .....
? .....
set print off
set print to 
之三

狐友Jack許提供,先用 select-sql 處理,再 copy to

SELECT SNO+','+REMARK FROM DBF_CURSOR
COPY TO abc.txt SDF