From: Dan Nelson Date: September 9 2004 6:05pm Subject: Re: when to use backquote in SQL List-Archive: http://lists.mysql.com/mysql/172352 Message-Id: <20040909180515.GC5008@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In the last episode (Sep 09), leegold said: > Could anyone link me or explain the purposes of backquotes in an SQL > statement. I tried searching the manual and googling it but couldn't > find a simple explaination. ``` vs. "regular" single quotes'''. > Thanks, Lee G. Backquotes are used to delimit table or field names; they aren't used to delimit SQL strings the way ' or " are. You'll almost never need to use them unless you have spaces or other strange characters in your table/field names. -- Dan Nelson dnelson@stripped