Jump to content

making better for load (normalization?!)


asmith

Recommended Posts

hey guys,

 

in some book i've get this question, i would really appreciate someone help me with it , i can't get it properly :

 

there's a group of articles table :

 

grouparticle table :

id  title  mother_subject

 

articles table :

 

Id Title             Groupid activated star Date_update       entereddate  

Int Varchar(30) int       tinyint  tinyint timestamp              Datetime

 

 

the question is :

1.what do you suggest for making this query load better or something like that :

2.what indexes you think its better to put?

 

db->sql_query("SELECT articles.* from articles INNER JOIN grouparticle ON articles.groupid=grouparticle.id where (activated > '0' ) and star > 0 and (groupid=$gid or parent=$gid) order by star DESC ");

 

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/103143-making-better-for-load-normalization/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.