I have a select query that I am using in Access to fetch some particular data that I want to achieve. Now I am moving to SQL Server (creating ssrs report) so I want to take this query from Access and use it in SQL Server and create a new table every time when I execute this query.
Here is my current query that I use in Access db:
select taxid, address1, count(address1)
from dbo.tblaccounts
group by taxid, address1
order by address1 asc, count(address1) desc;
Where should I insert/into statement...or is that something else that I need here.
selectandfromclause addINTO TableNameHere, is that what you are asking?#.