i ran the explain command on my main table in mysql.it showed like
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE xyz ALL NULL NULL NULL NULL 1722 Using where
does this affect the performance of the site? like when i so a select clause ? i have a primary key but this command says primary key as no .
From your query result we can see that you have no Index defined for your table because possible_keys column is also NULL.
Take a look at this page to see the syntax used to create an index in MySQL:
CREATE INDEX Syntax
This page details each column of the explain plan:
Looking at the MySQL Explain Plan