I want to run a query like this:
SELECT * FROM Studio WHERE Id IN (134, 144, 132, 138, 7432, 7543, 2566)
but the amount of Id<
declare a @temp table and split the values into it. then you could do
select * from Studio s inner join @temptable tb on s.ID=tb.ID