DECLARE
@table_membership TABLE( seq_id int identity(1,1),
name
varchar(1000) NOT NULL,
contact
varchar(1000) NOT NULL,
type_sort
int NOT NULL,
)