I have tested this query :
SELECT ID, Title, Author, Article FROM data_articles
WHERE Category = 'xyz' ORDER BY Title LIMIT 0 , 30
The time required to execute query is 10.4506 sec which may be large. I have more than 22,000 records in the table.
How should I modify theory so the time should be less. Using "select * " also increases the time?