spIncompatibleContentTypes
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ContentTypeID | int | IN |
Definition
Copy
CREATE PROCEDURE [dbo].[spIncompatibleContentTypes](
@ContentTypeID int
)AS
BEGIN
SET NOCOUNT ON;
SELECT IncompatibleContentID FROM IncompatibleContentTypes WHERE ContentTypeID = @ContentTypeID
SELECT ContentTypeID FROM IncompatibleContentTypes WHERE IncompatibleContentID = @ContentTypeID
END