I am using SQL Server 2014 and I have the following T-SQL query which runs fine:
SELECT Id, Name from TravelAgency
The last row of the output of this query is shown below:
Id Name
--- ----
--- ----
715 AB Ltd
I want to "manually" append the following values to the result set of this query: (999, XY Ltd) so that running the modifed query will give me the following results:
Id Name
--- ----
--- ----
715 AB Ltd
999 XY Ltd
To simplify, the query pulls the data requested from the TravelAgency table and ADDS the specified values at the end of the output. I need to add those specific values in my query but I just can't figure out how to do it!