Speed up your web pages

Discussion in 'Web Development' started by shabbir, Oct 13, 2007.

  1. jhon786

    jhon786 New Member

    Joined:
    Oct 12, 2011
    Messages:
    46
    Likes Received:
    0
    Trophy Points:
    0
    Thanks for this useful information. You explained all the things finely with examples. Nice.
     
  2. rozerdun

    rozerdun New Member

    Joined:
    Jul 16, 2011
    Messages:
    11
    Likes Received:
    2
    Trophy Points:
    0
    Home Page:
    http://www.whizkraft.com
    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.
     
  3. alanson

    alanson New Member

    Joined:
    Jan 2, 2012
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Thanks for the information you provided here. great
     
  4. parvez.pathan1

    parvez.pathan1 New Member

    Joined:
    Jul 7, 2012
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    as a web developer/designer
    Location:
    pune
  5. j.smith1981

    j.smith1981 New Member

    Joined:
    Mar 22, 2012
    Messages:
    8
    Likes Received:
    0
    Trophy Points:
    0
    Location:
    UK
    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).
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice