-
Notifications
You must be signed in to change notification settings - Fork 66
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
Code for "How to Retrieve Column Names from a Table in SQL" #106
base: main
Are you sure you want to change the base?
Conversation
…schema.columns WHERE table_name = 'Course';.sql
Create running-total
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.
Thanks for the updates, @degr8sid-code. Can you please take a look at my additional inline feedback?
@@ -0,0 +1,12 @@ | |||
SELECT id, scores, SUM(scores) |
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.
I think this file is not needed anymore
@@ -0,0 +1,7 @@ | |||
SHOW COLUMNS FROM Course; |
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.
I don't think this is needed for this tutorial, can you remove it from the PR, please?
@@ -0,0 +1,5 @@ | |||
SELECT column_name |
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.
I don't think this is needed for this tutorial, can you remove it from the PR, please?
@@ -0,0 +1,10 @@ | |||
SELECT COLUMN_NAME |
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.
I don't think this is needed for this tutorial, can you remove it from the PR, please?
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.
Making progress, @degr8sid-code, that's good.
There are three extra files in this PR. To remove them, go to your filesystem and delete those three files. Then from there, run the following from the sql-tutorials repository:
git add .
git commit -m "Remove Extra Files"
git push
…total Update running-total.sql
No description provided.