How do I find the number of links in the database ?

Discussion in 'MySQL' started by lumpy, Oct 24, 2010.

  1. #1
    Hey. I have some Sql databases in my computer made by phpld (the directory software).

    Is there any way or any tool that can help me find out how many links are in the database ? :confused:
     
    lumpy, Oct 24, 2010 IP
  2. pig2cat

    pig2cat Active Member

    Messages:
    299
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #2
    in phpmyadmin you can explore the entire database and it tells you the amount of rows...
     
    pig2cat, Oct 24, 2010 IP
  3. Rubbish

    Rubbish Well-Known Member

    Messages:
    142
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    130
    #3
    Yeah, why don't you use PhpMyAdmin to check this?
     
    Rubbish, Oct 24, 2010 IP
  4. Layoutzzz

    Layoutzzz Greenhorn

    Messages:
    78
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    18
    #4
    Hi,
    You can use phpMyAdmin for this or use following query
    SELECT COUNT(*) FROM `phpld_links`
    Code (markup):
    It will show number of records from phpld_links table
     
    Layoutzzz, Oct 24, 2010 IP