|
Note: This development preview interface showcases only a subset of the features of the LinQuer system.
linkspec_stmt := CREATE LINKSPEC linkspec_name AS link_method;
linkindex_stmt := CREATE (FULL) LINKINDEX FOR tbl_name.col_name USING native_link;
link_method := native_link | link_clause_expr | UDF;
native_link := see Supported Links section below;
link_clause_expr := link_clause AND link_clause_expr | link_clause OR link_clause_expr | link_clause;
link_clause := LINK src_tbl_name.col_name WITH tgt_tbl_name.col_name USING link_terminal;
link_terminal := native_link | UDF | linkspec_name;
- synonym
- hyponym
- weightedJaccard
- token intersect
- Cosine
- BM25
- HMM
To successfully run the queries generated by LinQuer, you will need to
import the following UDFs onto DB2.
They are retrieved from Sample
UDFs for Migration, IBM Developer Works).
We provide several examples here:
- Simple
Link Using Synonym
- Simple
Link Using Weighted Jaccard, with Link Index on visits.diagnosis Column
translated into
translated into
|