MySQL Forums
Forum List  »  Newbie

Re: SQRT / Pythagoras Query problem
Posted by: Rick James
Date: May 16, 2014 05:53PM

> How do I limit the returns to only those distances less than 10?

HAVING distance < 10

or add this to the WHERE clause:
SQRT(...) < 10

> mydb.Assign.Attract

MySQL does not have a "dbo" part. Tables references are of either of these forms:
table_name
database_name.table_name
but not
db.dbo.tbl

Options: ReplyQuote


Subject
Written By
Posted
Re: SQRT / Pythagoras Query problem
May 16, 2014 05:53PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.