Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE PROCEDURE dbo.selItemByAdvancedSearch
@searchTitle varchar(100),
@searchAuthor varchar(100)
AS
SELECT *
FROM product
INNER JOIN FREETEXTTABLE(product, pro_Title, @searchTitle) AS key_table_title
ON product.pro_ID = key_table_title.[KEY]
INNER JOIN author
ON author.aut_ID = product.pro_author
INNER JOIN FREETEXTTABLE(author, aut_Name, @searchAuthor) AS key_table_author
ON author.aut_Name = key_table_author.[KEY]