7.4 全文索引

SQL

SELECT *
FROM Customers
WHERE CustomerID like '%ANA%'

SPL

A
1 =file(“Customers.ctx”).open()
2 =A1.index@w(file(“Orders.ctx__IDW”);CustomerID)
3 =A1.icursor(;like(CustomerID,“*ANA*”); file(“Orders.ctx__IDW”)).fetch()
4 =A1.close()

A2 按列 CustomerID 建立全文索引
A3 利用索引字段进行 like 匹配查询,注意:如果是英文或者数字,则匹配串里至少要三个及以上的字符;如果是中文字符则不限制字符个数