How can I save the output table from the join code below in sql server.
select * from [Products] join [Sales] on [Sales].Item_name = [Products].Item_name
NB: Usually, I would go join the table in SSIS and load into sql server but I want to a faster one.