table name :internship ,now i want to store "skill_required"for company name XYZ like skill are: php , java etc mow Question is at the time of company registration i have to specify text of or check box..etc and how to store it in database ?with id ?like 1 for php 2 for java
2nd. when student search for internship then in field of interest he specify php other student specify java ,so then company xyz must be display for both student search as company is providing internship on php and java both,so how to retrieve that form database,? there should be separate table for skills with skill name and skill id?
You should have a separate table linking each company to all skills they require, for example the
Company
table:...and skills required in your
Internship
table:...and then you could have a separate
Skill
table mapping skill IDs to skill names:For example, if Java is skill
2
, you could do:That query returns the companies that require Java. Alternatively, a more complex query:
You should not put multiple values in a single column, because doing so breaks first normal form. Have a look at that link for examples of the problems you're likely to come across, and how to fix them.