forked from UofT-DSI/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Homework #1
Open
zrasi
wants to merge
26
commits into
main
Choose a base branch
from
homework
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Good job! |
Thank you Sidra!
…On Fri., May 17, 2024, 2:49 p.m. SidraBushra, ***@***.***> wrote:
Good job!
—
Reply to this email directly, view it on GitHub
<#1 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/BH3W3SALM7XFTCGFKCLJM73ZCZGMDAVCNFSM6AAAAABH2UJXBSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMJYGE4TMMBYHE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Completed homework_3
rearrange of 05 content
For HW2, For Where query task, please use order by command as well. Others, good. |
Good job on HW3. |
Thank you Sidra for reviewing my homework and for the feedback.
Do you mean to add ORDER BY command for this WHERE query:
…--WHERE
/* 1. Write a query that returns all customer purchases of product IDs 4
and 9. */
-- option 1
SELECT *
FROM customer_purchases
WHERE product_id IN (4, 9);
-- option 2
SELECT *
FROM customer_purchases
WHERE product_id = 4 OR product_id = 9;
Best regards,
Zarrin
On Mon, May 20, 2024 at 10:33 PM SidraBushra ***@***.***> wrote:
For HW2, For Where query task, please use order by command as well.
Others, good.
—
Reply to this email directly, view it on GitHub
<#1 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/BH3W3SFBU5253SOSXT6OBPTZDKW7BAVCNFSM6AAAAABH2UJXBSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMRRGU4TIOJZGI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Thank you very much Sidra!
…On Mon, May 20, 2024 at 10:34 PM SidraBushra ***@***.***> wrote:
Good job on HW3.
—
Reply to this email directly, view it on GitHub
<#1 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/BH3W3SBBOAUEQHVWY35IUILZDKXELAVCNFSM6AAAAABH2UJXBSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMRRGU4TMMZUGY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
matching the markdown
matching the markdown
Completed homework 4
Completed homework 5
Completed homework 5
HW4 and 5 marked, Passed. |
Thank you very much Sidra.
…On Sat., May 25, 2024, 7:40 p.m. SidraBushra, ***@***.***> wrote:
HW4 and 5 marked, Passed.
—
Reply to this email directly, view it on GitHub
<#1 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/BH3W3SBPOUVKHLHE5ASTD4TZEEOPJAVCNFSM6AAAAABH2UJXBSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMZRGY4TIMBYGA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Completed homework 6
Completed homework 6
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What changes are you trying to make? (e.g. Adding or removing code, refactoring existing code, adding reports)
For this homework I created a logical data model for the customer and customer_purchases tables.
What did you learn from the changes you have made?
Was there another approach you were thinking about making? If so, what approach(es) were you thinking of?
Were there any challenges? If so, what issue(s) did you face? How did you overcome it?
How were these changes tested?
A reference to a related issue in your repository (if applicable)
Checklist