want a school good database ( tables and columns)
-
hi i want to write a good app for schools to use in regeister student. please help me to create a good database for that ! thanks for your helping ! ! ! :-O
-
hi i want to write a good app for schools to use in regeister student. please help me to create a good database for that ! thanks for your helping ! ! ! :-O
Based on the info you provided there's not much to say. Have you designed something, got specific problems etc. If you're in the beginning, may I suggest a good book: http://www.amazon.com/Database-Modeling-Design-Fifth-Management/dp/0123820200/ref=sr_1_1?s=books&ie=UTF8&qid=1301228968&sr=1-1[^]
The need to optimize rises from a bad design.My articles[^]
-
Based on the info you provided there's not much to say. Have you designed something, got specific problems etc. If you're in the beginning, may I suggest a good book: http://www.amazon.com/Database-Modeling-Design-Fifth-Management/dp/0123820200/ref=sr_1_1?s=books&ie=UTF8&qid=1301228968&sr=1-1[^]
The need to optimize rises from a bad design.My articles[^]
sorry ! ! ! i want to design a database for school ! please help me !
-
sorry ! ! ! i want to design a database for school ! please help me !
You don't have to be sorry. The problem is that you haven't: - given any usable information for/about the design - showed anything you've already done - pointed out a specific question These forums are for getting help for example when you get stuck in a certain issue or don't understand a certain detail etc. People here won't hand over the code or database etc. If you're a student it's important that you learn the tools and techniques you're given lessons in. This won't happen if someone else does the thinking for you. I would suggest that you have a look at other questions in this forum. You'll quickly notice what is the best way to ask for help. I believe that if you explain yourself well and in detail and more importantly show that you've done some effort then you'll get quality answers.
-
You don't have to be sorry. The problem is that you haven't: - given any usable information for/about the design - showed anything you've already done - pointed out a specific question These forums are for getting help for example when you get stuck in a certain issue or don't understand a certain detail etc. People here won't hand over the code or database etc. If you're a student it's important that you learn the tools and techniques you're given lessons in. This won't happen if someone else does the thinking for you. I would suggest that you have a look at other questions in this forum. You'll quickly notice what is the best way to ask for help. I believe that if you explain yourself well and in detail and more importantly show that you've done some effort then you'll get quality answers.
ok i'm student and i want to creat an App for my school. i learned C# programing but i have problem in sql server . i can't Normalization what i want ! if any body can to teach me how to create a good database for my school, I will be grateful
-
hi i want to write a good app for schools to use in regeister student. please help me to create a good database for that ! thanks for your helping ! ! ! :-O
-
ok i'm student and i want to creat an App for my school. i learned C# programing but i have problem in sql server . i can't Normalization what i want ! if any body can to teach me how to create a good database for my school, I will be grateful
So you really ask: PLEASE, MAKE THE COMPLETE DESING FOR ME Look, it isn't this hard; you just have to think about relationships: - you have *students* with Student_ID and other student related columns - vou have *teachers* with Teacher_ID and other teacher related columns - you have *courses* with Course_ID and other course related columns them are your BASE tables then you have a relation: which teacher can teach which courses - *TeachCourse* with Teacher_ID and Course_ID and other columns (i.e Weekday/Time) also, you have a relation: which student took what courses - *StudCourse* with Student_ID and Course_ID, no other columns (initially) needed Underlined columns are the primary keys for the tables Beware this is just the basic work - you have to refine it for multiple years and so on HTH