Go4Expert Member
13Oct2011,11:25   #21
jhon786's Avatar
Thanks for this useful information. You explained all the things finely with examples. Nice.
Go4Expert Member
22Nov2011,12:59   #22
rozerdun's Avatar
Very informatics thread speed is very important for web pages because if it takes time to open, no body waits they switch to another website.
Newbie Member
2Jan2012,17:36   #23
alanson's Avatar
Thanks for the information you provided here. great
Newbie Member
7Jul2012,13:40   #24
parvez.pathan1's Avatar
thanks buddy
Light Poster
25Jul2012,15:51   #25
j.smith1981's Avatar
Very good post about the start of normalisation though on the practical part it's not actually in mysql's view actually joning tables. Just as a bit of a tip you lose allot of the good features of joining in MySQL if you just use FROM table1, table2, table3...

What you need to be doing to adhere to formally be joining tables is something like so:

SELECT *
FROM students
JOIN attendance ON students.studentid = attendance.studentid


There's other kinds of joints like 'INNER JOIN', 'OUTER JOIN', 'LEFT JOIN' and 'RIGHT JOIN' on the contrast FROM keyword/command will work, just it's more like using 'JOIN' but you do lose allot of MySQL's performance (i.e.when you want to omit any rows completely if the relational table you are joining has no data for the row on the primary table tuples/entities/rows).