I need a select query from three tables to show item and sub item (level on) and sub sub item(level two), my problem is when I select with using join I get more than item1 in the result of the query in case the item1 have more than one sub, so I need the query to complete this menu and this us the three tables.
CREATE TABLE [dbo].[Category] (
[CategoryID] [int] PRIMARY KEY IDENTITY ,
[CategoryName] [nvarchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[Remarks] [nvarchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[CategorySub] (
[SubCategoryID] [int] NOT NULL ,
[CategoryIDToSub] [int] NULL ,
[SubCategoryName] [nvarchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[RcatID] [int] NULL ,
[RsubID] [int] NULL ,
[Rsub2ID] [int] NULL ,
[Remarks] [nvarchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[CategorySub2] (
[Sub2CategoryID] [int] NOT NULL ,
[SubCategoryID] [int] NULL ,
[Sub2CategoryName] [nvarchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[RcatID] [int] NULL ,
[RsubID] [int] NULL ,
[Rsub2ID] [int] NULL ,
[Remarks] [nvarchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO