Condividi tramite


Integrazione tra ricerca full-text e predicati Transact-SQL

I predicati CONTAINS e FREETEXT possono essere combinati con altri predicati Transact-SQL, ad esempio LIKE e BETWEEN, nonché essere utilizzati in una subquery. In questo esempio viene eseguita la ricerca delle descrizioni il cui ID sia diverso da 5 e che contengano le parole "Aluminium" e "splindle".

USE AdventureWorks;
GO
SELECT Description
FROM Production.ProductDescription
WHERE ProductDescriptionID <> 5 AND
   CONTAINS(Description, ' Aluminum AND spindle');
GO

Nella query seguente il predicato CONTAINS viene utilizzato in una subquery. Se si utilizza il database AdventureWorks, la query consente di ottenere il valore di commento per tutti i commenti della tabella ProductReview per un determinato ciclo.

USE AdventureWorks;
GO
INSERT INTO Production.ProductReview 
(ProductID, ReviewerName, EmailAddress, Rating, Comments) 
VALUES
(780, 'John Smith', 'john@fourthcoffee.com', 5, 
'The Mountain-200 Silver from AdventureWorks Cycles meets and exceeds expectations. I enjoyed the smooth ride down the roads of Redmond')
 
-- Given the full-text catalog for these tables is Adv_ft_ctlg, 
-- with change_tracking on so that the full-text indexes are updated automatically.
WAITFOR DELAY '00:00:30'   
-- Wait 30 seconds to make sure that the full-text index gets updated.
 
 
SELECT r.Comments, p.Name
FROM Production.ProductReview r
JOIN Production.Product p 
ON
 r.ProductID = p.ProductID
 
AND r.ProductID = (SELECT ProductID
                  FROM Production.ProductReview
                  WHERE CONTAINS (Comments, 
                                 ' AdventureWorks AND 
                                   Redmond AND 
                                   "Mountain-200 Silver" '))

GO

Vedere anche

Altre risorse

CONTAINS (Transact-SQL)
FREETEXT (Transact-SQL)
WHERE (Transact-SQL)

Guida in linea e informazioni

Assistenza su SQL Server 2005