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
For examle, lets take simple table
CREATE TABLE `read2` ( `k1` int(11) NOT NULL, `k2` int(11) NOT NULL, `v` varchar(40) NOT NULL, PRIMARY KEY (`k1`,`k2`) )
SELECT * FROM read2; +----+----+----+ | k1 | k2 | v | +----+----+----+ | 1 | 1 | A1 | | 1 | 2 | A2 | | 1 | 3 | A3 | | 2 | 1 | B1 | | 2 | 2 | B2 | | 2 | 3 | B3 | | 3 | 1 | C1 | | 3 | 2 | C2 | | 3 | 3 | C3 | +----+----+----+
now, do some selection with comparasions k1>2 k2>1
P 1 HSPHP_test read2 PRIMARY v 0 1 1 > 2 2 1 10 0 1 B2 B3 C1 C2 C3
Now, I can't understand how comparisons work
so, how comparisons for composed keys work, is it bug or feature?
The text was updated successfully, but these errors were encountered:
If it possible, please answer is it a bug or not. If it is, I will try to fix it.
Sorry, something went wrong.
it's not a bug!
No branches or pull requests
For examle, lets take simple table
now, do some selection with comparasions k1>2 k2>1
Now, I can't understand how comparisons work
so, how comparisons for composed keys work, is it bug or feature?
The text was updated successfully, but these errors were encountered: