Скачиваний:
2
Добавлен:
20.01.2023
Размер:
801 б
Скачать
-- ================================================
-- Template generated from Template Explorer using:
-- Create Scalar Function (New Menu).SQL
--
-- Use the Specify Values for Template Parameters 
-- command (Ctrl-Shift-M) to fill in the parameter 
-- values below.
--
-- This block of comments will not be included in
-- the definition of the function.
-- ================================================
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		<Author,,Name>
-- Create date: <Create Date, ,>
-- Description:	<Description, ,>
-- =============================================
CREATE FUNCTION DYNTAB
(
	@type varchar(15)
)
RETURNS Table
AS
return select * from Medicine
       where type = @type
GO

Соседние файлы в предмете Системы и Методы Управления Базами Данных