Viewing 3 posts - 1 through 4 (of 4 total)
Jack,
Thanks for the reply. It makes sense to add the ID identity column in Rooms table. My question is, does this design looks too normalized?
February 11, 2009 at 10:50 am
#942362
I guess there is no way to paste a database diagram here, so here is my idea:
CREATE TABLE [dbo].[tblClass](
[ClassName] [nchar](10) NULL,
[RoomName] [nchar](10) NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[tblClass] ADD CONSTRAINT...
February 11, 2009 at 10:25 am
#942336
I wanted to paste the database diagram picture here. Is there a way to paste it.
February 11, 2009 at 9:52 am
#942306