I do want to apologize for my ignorance in this post on what was going on with my sql. I was given erroneous advice from my host and after further research identified the issue. I want to apologize to boonex and Alex for this post.
About BoonEx•Terms•Privacy•Contacts•© BoonEx (ACN 127966581)
SELECT `ID` FROM `Profiles` WHERE `ID` = 10 LIMIT 1
That will return only the ID from the database where ID = 10. If dolphin needs any of the other profile fields other than the ID then that query will not be enough.
"SELECT *" is used in places where most of the fields are user or may be used - also it is not related to the query execution speed.
Also profiles are cached and once cached no access to database is performed to get particular profile info.
Not sure if I have that right or not.