How to use QUICK statement in PHP

I am new to php, i need help about mysql quick command.

How i can use quick in my quries,

i tried this.

$SQL = “SELECT id,name FROM table_name QUICK”;

this executes but i don’t know it works or not.

And when i tried this

$SQL = “SELECT a.id,b.name,b.id FROM table_name as a, table_name2 as b QUICK WHERE a.id = b.id”

this statement not executes. So where i am having error? Any one can help me?

Sponsor our Newsletter | Privacy Policy | Terms of Service