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 proc_search_nursery_stock (
@searchFor VARCHAR(55)
)
AS
CREATE TABLE #results (id INT, plant_name VARCHAR(255))
INSERT #results (id, plant_name)
EXECUTE proc_list_mature_plants_of_type @searchFor
SELECT * FROM #results