Database

出自VFP Wiki

在2006年9月29日 (五) 14:17由Elleryq (對話 | 貢獻)所做的修訂版本
跳轉到: 導航, 搜尋


目錄

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

用 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