-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
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
doc: add doc of functional dependency #33164
Conversation
[REVIEW NOTIFICATION] This pull request has not been approved. To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
Code Coverage Details: https://codecov.io/github/pingcap/tidb/commit/581536b32366972974523d063df2d80c7c0c489e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also please replace "function dependency" with "functional dependency".
```sql | ||
create table t1(a int, c int) | ||
create table t2(a int, b int) | ||
select t1.a from t1 join t2 on t2.a=t1.a group by t2.a where c=1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the purpose of this SQL? It's different from the below one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahaaa, a mistake, >.<
arenatlx seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Signed-off-by: arenatlx <arenatlx@arenatlxdeMacBook-Pro.local>
some CLA problem occurs when migrating to my new pc. Resolved by redirecting to #33875 |
Signed-off-by: ailinkid 314806019@qq.com
What problem does this PR solve?
Issue Number: close #29766
Problem Summary:
What is changed and how it works?
Motivation Issue: #29766
add doc of functional dependency
Check List
Tests
Side effects
Documentation
Release note