phronCare/PhLSM_StockItemIdList.sql

5 lines
84 B
MySQL
Raw Normal View History

CREATE TYPE dbo.PhLSM_StockItemIdList AS TABLE
(
stockitem_id INT NOT NULL
);
GO