LOAD
各种原始字段
各种计算字段
RESIDENT 表名
ORDER BY 字段名 ASC
怎么存储为QVD文件
store 各种字段
from 表名 into $(V_Path)Orders.qvd;
Store 表名 into $(V_Path)Orders.qvd;
store
Address,
City,
CompanyName,
ContactName,
Country,
CustomerID,
DivisionID,
Fax,
Phone,
PostalCode,
StateProvince
from Customers into $(V_Path)Customers.qvd;
怎么取QVD文件的数据
Automatic Creation of a QVD File in the Script
在脚本中自动创建 QVD 文件
Customers:
BUFFER (Stale After 7 days)
LOAD
各种字段名
;
SQL SELECT * FROM 表名;