We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bee66aa commit b46e65aCopy full SHA for b46e65a
data-platform/core-converged-db/database-23c/database-search/4-contains-query.sql
@@ -0,0 +1,15 @@
1
+REM Script for 23c: 4-contains-query.sql
2
+REM Query using CONTAINS
3
+
4
+-- Query using CONTAINS with FUZZY operator
5
6
+select metadata output from SEARCH_PRODUCTS
7
+where CONTAINS(data,'fuzzy(Los)')>0;
8
9
+-- check the result in table STORES
10
11
+select physical_address from stores where store_id=10;
12
13
+-- check the result in table SHIPMENTS
14
15
+select delivery_address from shipments where shipment_id=976;
0 commit comments