2005/11/11 | informix
类别(SQL) | 评论(0) | 阅读(20) | 发表于 09:01
载出
格式:    UNLOAD TO file-name select-statement
说明:    使用该语句把表中的相应记录输出到文件。
示例:
     UNLOAD TO /tmp/customer.txt select * from customer
载入
格式:LOAD FROM file-name INSERT INTO table-name
说明:    使用该语句把文件中的内容载入到相应的表中。
示例:
LOAD FROM /tmp/customer.txt INSERT INTO customer
0

评论Comments