How to pass an array of event_Id which is varchar to a stored procedure, for example: 7607,8110.
CREATE PROCEDURE [dbo].[sp_Test]
    @Event_Id VARCHAR(500)
How to write the stored procedure to get record with each event_id?
How to pass an array of event_Id which is varchar to a stored procedure, for example: 7607,8110.
CREATE PROCEDURE [dbo].[sp_Test]
    @Event_Id VARCHAR(500)
How to write the stored procedure to get record with each event_id?
 
    
    