Click here to Skip to main content
16,011,868 members
Please Sign up or sign in to vote.
1.25/5 (3 votes)
See more:
Mobile Accessories Stock Management

For Example:-
Item Name-Category-Company-Sub company-Quantity...
A manage Purchase & Sale Quantity

I.e:- BL 4C-Battery-Nokia-Adm-10 Another One
BL 4C-Battery-Nokia-Akkai-10

It's ItmName,Catg,Comp,Sub Comp one & More entrys.....

How to solve this Problem...
Posted
Comments
phil.o 16-Dec-13 11:09am    
It's not a problem; these are called requirements.
What have you tried?
Dave Kreskowiak 16-Dec-13 12:09pm    
That's what you call a "requirement"?? My definition and your are vastly different!

That's what I call "incomprehensible and vague garbage". Requirements are far more detailed and leave little to nothing to "guessing" what it really means.
phil.o 17-Dec-13 6:26am    
Sorry, I'm not responsible if the OP does not know how to write down his requirements correctly.
Call them whatever you like, I don't really care.

I have make a table according your requirement.
copy and paste in your database.
C#
CREATE TABLE [dbo].[Mobile_Managment](
	[SrNo] [int] IDENTITY(1,1) NOT NULL,
	[itemName] [varchar](200) NULL,
	[Category] [varchar](200) NULL,
	[Company_name] [varchar](200) NULL,
	[SubCompany] [varchar](200) NULL,
	[Qty] [varchar](200) NULL,
 CONSTRAINT [PK_Mobile_Managment] PRIMARY KEY CLUSTERED 
(
	[SrNo] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

for any query and information hit to reply
 
Share this answer
 
SQL
Fundamentals of Database Design


Refer below URL :

http://www.sqa.org.uk/e-learning/MDBS01CD/page_26.htm[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900