Re: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Alec . Cawley
Thomas Sundberg [EMAIL PROTECTED] wrote on 04/02/2005 11:39:12: Hi! I'm looking for the syntax diagram for MySQL and can't find it. I have downloaded the entire MySQL manual as one html page and searched it for the definition of where_definition and I cant find it. Could somebody please

RE: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Thomas Sundberg
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: den 4 februari 2005 12:45 To: [EMAIL PROTECTED] Cc: mysql@lists.mysql.com Subject: Re: Syntax diagram, where is it located in the doc? Thomas Sundberg [EMAIL PROTECTED] wrote on 04/02/2005 11:39:12:

Fw: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Gabriel PREDA
You're right there is none.. .but as you see there is a short line that says: In the WHERE clause, you can use any of the functions that MySQL supports, except for aggregate (summary) functions. See section Functions and Operators. Gabriel PREDA - Original Message - From:

Re: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Michael Stassen
From the manual, where_definition consists of the keyword WHERE followed by an expression that indicates the condition or conditions that rows must satisfy to be selected. http://dev.mysql.com/doc/mysql/en/select.html That seems simple and straightforward to me. Perhaps if you told us why you

RE: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Alec . Cawley
Thomas Sundberg [EMAIL PROTECTED] wrote on 04/02/2005 12:46:02: Does anybody at the list know the answer to my question? I sent it a few days ago and haven't received any response. It does exist a syntax diagram for MySQL, doesn't it? Since no-one replied to your first

RE: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Thomas Sundberg
-Original Message- From: Michael Stassen [mailto:[EMAIL PROTECTED] Sent: den 4 februari 2005 14:19 To: Thomas Sundberg Cc: mysql@lists.mysql.com Subject: Re: Syntax diagram, where is it located in the doc? From the manual, where_definition consists of the keyword WHERE

RE: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Tom Crimmins
-Original Message- From: Thomas Sundberg Sent: Friday, February 04, 2005 07:48 To: mysql@lists.mysql.com -Original Message- From: Michael Stassen Sent: den 4 februari 2005 14:19 To: Thomas Sundberg Cc: mysql@lists.mysql.com From the manual,

RE: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Alec . Cawley
Thomas Sundberg [EMAIL PROTECTED] wrote on 04/02/2005 13:48:03: It is very simple but absolutely not straight forward. It really doesn't say anything. Just that you should do things right and then you will not have any problems. The concrete problem I tried to solve were if MySQL supports

Re: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Gleb Paharenko
Hello. May be it is not exactly what you want, but usually, I look at the sql/sql_yacc.yy in a source distribution. Thomas Sundberg [EMAIL PROTECTED] wrote: Hi! I'm looking for the syntax diagram for MySQL and can't find it. I have downloaded the entire MySQL manual as one html

Re: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Peter Brawley
Thomas, As you've discovered, MySQL documentation doesn't (yet) include a syntax diagram, but there's a manual page for WHERE clauses, there's a manual page for logical operators including XOR, and they show that the answer to your question about WHERE clauses using XOR is 'yes', as does

Re: Syntax diagram, where is it located in the doc?

2005-02-04 Thread Jeremy Cole
Hi Thomas, I'm looking for the syntax diagram for MySQL and can't find it. I have Just to give you a complete answer to your question, this is what is valid (I've stripped out the C code parts to leave just the definition): where_clause: /* empty */ | WHERE expr expr: expr_expr

Syntax diagram, where is it located in the doc?

2005-02-02 Thread Thomas Sundberg
Hi! I'm looking for the syntax diagram for MySQL and can't find it. I have downloaded the entire MySQL manual as one html page and searched it for the definition of where_definition and I cant find it. Could somebody please point me to a location where the complete syntax diagram can be found?