Skip to content

Commit b46e65a

Browse files
authored
Create 4-contains-query.sql
1 parent bee66aa commit b46e65a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)