Skip to content
Advertisement

FOR XML PATH produces only first item

I have two tables: Reservations and ReservationNights (every reservation has many nights).

enter image description here

In a stored procedure, I have a variable that looks like this: @roomTypeList = '2;3;4;5;' -> its a list of RoomUseIds.

I need to display only the reservations that have a reservation nights with one of those Ids (In this example, it should display only reservation 14105, because there are existing nights where RoomUseId = 3 and the '2;3;4;5;' variable contains 3.

I’ve tried to use something like this, but it doesn’t produce good results – sometimes it displays only 1 reservations when multiple should be displayed, usually it displays nothing.

Advertisement

Answer

You key issue is lack of normalization. If you have a list, store it as a list.

So you need a table variable or Table Valued parameter. At a pinch, you can split your existing string, but it’s better to have the data in the right format in the first place.


If you really wanted to stick with a comma-separated list, you could merge STRING_SPLIT into the above query, rather than trying to construct an equivalent aggregated string.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement