473,385 Members | 1,535 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

How can i create table for academic details

luckysanj
I have problem on creating academic table.
I need to input from html form to different academic table.
But how to create academic table for my requirement.

I have different leve of student.
Like

SLC Borard Pass Year Division Percentage

Intermediate Pass Year Division Percentage

Bachelor Pass Year Division Percentage

Master Pass Year Division Percentage


In the above table every filed need pass year, division, percentage. So how can i manage this table on database.

Plz help me. Ur help will be appereciated
May 18 '09 #1
2 2866
Atli
5,058 Expert 4TB
Hi.

Assuming, I am understanding you correctly, this could be solved using a one-to-many relationship (1:N).

Meaning that you would create two tables.
One to contain all the common data (pass, year, etc...), and a second one to contain the student levels.

Consider this:
Expand|Select|Wrap|Line Numbers
  1. StudentData:
  2. +----+------+------+--------+
  3. | ID | Type | Year | etc... |
  4. +----+------+------+--------+
  5. |  1 |    1 | 2009 | ...    |
  6. |  2 |    2 | 2005 | ...    |
  7. |  3 |    1 | 2007 | ...    |
  8. |  4 |    3 | 2002 | ...    |
  9. +----+------+------+--------+
  10.  
  11. StudentType:
  12. +----+--------------+
  13. | ID | Name         |
  14. +----+--------------+
  15. |  1 | Intermediate |
  16. |  2 | Bachelor     |
  17. |  3 | Master       |
  18. +----+--------------+
Where the "Type" field in the Data table references the ID field of the Type table.

Does that answer your question?
If not, please elaborate.
May 18 '09 #2
Thank You .
Jul 26 '09 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

14
by: Dafydd | last post by:
I have the following Script in my web page reduce to two pages. <script> function details() { document.getElementById('details').style.visibility='visible';...
47
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
13
by: Comet | last post by:
Hi I have had a look on the net with regards to whether you can sell applications you created with Visual Studio .NET 2003 Academic. It seems to be as clear as mud! Can anyone help? Are you?...
5
by: Julian Milano | last post by:
I'm confused. Of the number of ppl selling VS Net 2003 Pro Academic, one persons says there are 2 CDs, another 4, another 7 and yet another 9!!?? They all claim to be selling the Academic Pro...
20
by: Guru | last post by:
Hi I have a table which contains number of rows. I want to fetch the last 5 records from the table. I know for the first 'n' records we can use FETCH FIRST n ROWS ONLY command. But i want to...
10
by: Grumpy Aero Guy | last post by:
Visual Studio .net Academic Edition: After creating a OLEdbDataadapter, followed by an OLE DB Connection (all of which occurs successfully, by the way), I am unable to create a Dataset. I...
117
by: phil-news-nospam | last post by:
Is there really any advantage to using DIV elements with float style properies, vs. the old method of TABLE and TR and TD? I'm finding that by using DIV, it still involves the same number of...
0
by: Lillian | last post by:
Dear all: We are researchers from Shih Hsin University and we are currently launching the 2006 New Energy and Environmental Media Issues Survey, this is a non-profit academic research. In this...
24
by: Dan2kx | last post by:
Hello to all that read and thank you to all that post Background: I have been tasked to create a holiday database for the employees in my lab, (so expect many more posts) im stuck at the first...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.