We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Should also be added to the CREATE TABLE syntax we will attach to the submission, so not closing for now.
Sorry, something went wrong.
@iandelrio remember to add this at the end of the final .sql when submitting:
ALTER TABLE locations ADD CHECK (longitude>=-123.27 AND longitude <= -123.22 AND latitude >= 49.241 AND latitude <= 49.283);
In PHP:
$longitude >= -123.27 && $longitude <= -123.22 && $latitude >= 49.241 && $latitude <= 49.283;
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: