SitePoint Sponsor

User Tag List

Results 1 to 6 of 6

Thread: Primary key or Index ?

  1. #1
    SitePoint Member
    Join Date
    Apr 2005
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Primary key or Index ?

    Hi,

    I have a table contains 80.000 rows approx and I set (id) field to be primary key and index by using phpmyadmin.

    my question is that right ? or it must be primary key or index not both

  2. #2
    SitePoint Member
    Join Date
    May 2007
    Location
    San Francisco, California
    Posts
    18
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, you did the right thing. IIRC a Primary Key is just a special form of a UNIQUE INDEX in MySQL
    I'd rather be poor than run a proxy site.

  3. #3
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,468
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    if you made it both the primary key and in index, then the index is redundant

    a primary key is an index, so the extra index is not needed
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  4. #4
    SitePoint Member
    Join Date
    Apr 2005
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you

    but, when i did this (both). The search in the table would be slowly or would not affect at search speed ?

  5. #5
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,468
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    redundant indexes do not affect search speed, they just makes inserts, updates, and deletes slower
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  6. #6
    SitePoint Member
    Join Date
    Apr 2005
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    r937, thank you

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •