I created a view whose definition is SELECT [Some address related columns] FROM TableName. The base table has several million rows. (SQL 2012)
I want to make this view available temporarily to a development team that is working on improving functionality in a connecting system and I don't have time to be the middle man retrieving data for them while they're doing that. Hence, a view for them to test their (hopefully) improved SQL statements.
I want this view however, to only ever return a maximum of 1000 rows that meets the WHERE criteria the connected user constructs. For the life of me I can't find some guidance on how to do this.