Files
time-cafe-desktop-app/sqlscripts/functions/function-does_product_exist_with_name.sql
T
2026-07-12 13:56:05 +04:00

19 lines
416 B
Transact-SQL

USE [Database]
IF OBJECT_ID('[Functions].[does_product_exist_with_name]') IS NOT NULL
DROP FUNCTION [Functions].[does_product_exist_with_name];
GO
CREATE FUNCTION [Functions].[does_product_exist_with_name](
@name AS NVARCHAR(128)
)
RETURNS BIT
AS
BEGIN
IF EXISTS (
SELECT *
FROM [Tables].[products]
WHERE [name] = @name
)
RETURN CAST(1 AS BIT);
RETURN CAST(0 AS BIT);
END