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

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -