storing a Book using SQL Server -
hi , thank attention
i'm working on database system project , must implement digital library using sql server.
i dont know how can store book 1000 pages (page page , serching ability) in sql server
i thinking creating table 1000 columns ntext type,but think isn't wise way.
could me suitable method problem.
i going store multipage image books , voice books
thank you.
1000 columns? no rather 1000 rows in table such as:
table bookpage: bookid int pageid int pagetext ntext
you have table book:
table book: bookid int title nvarchar author nvarchar
Comments
Post a Comment