You are on page 1of 1

USE [SVENTAS]

GO

SELECT [Id_Producto]
,[Nom_Producto]
,[Pre_Producto]
,[Can_Producto]
,A.[Id_Proveedor]
,A.[Id_Categoria]
,Nom_Categoria
FROM [dbo].[Productos] AS A
JOIN Categorias AS B ON A.Id_Categoria=B.Id_Categoria
where A.[Id_Categoria] =2
GO

You might also like