Remove values from JSON array based on values in another table
I need to remove some values in a JSON array if they match with values from another table, if match id and pax: Here is some data declare @T1 Table (id int ,pax int ,rooms nvarchar(512)) declare @T2 Table (id…