make ranking on search result

i hv a product table chemicals(prodname,prodcat,proddesc)

my query is

SELECT prodname FROM bw_product WHERE

prodname like ‘%sodium chloride%’

		 OR

prodcateg like ‘%sodium chloride%’

		 OR 

proddesc like ‘%sodium chloride%’

order by prodname

“sodium chloride” is searched ,
I am getting a very large number of results and the product “sodium chloride” is nowhere near the top.
The search needs to be configured so that exact (or nearly exact) “prodname” appear at the top,exact (or nearly exact) “prodcateg” appear at the next level and the lowest “ranked” results (ones at bottom) should be ones that had a search hit in the “proddesc” field.

how can i possible these ? pls give the correct query

Maybe try this:

SELECT prodname,1 as id FROM bw_product WHERE prodname like ‘%sodium chloride%’

UNION
SELECT prodcateg,2 as id FROM bw_product WHERE like ‘%sodium chloride%’

UNION
SELECT proddesc,3 as id FROM bw_product WHERE like ‘%sodium chloride%’

order by id

thanks u its working