Conversation
|
|
||
| !echo Running query for Top 5 airlines....; | ||
|
|
||
| -- GLC| What about table creation? |
There was a problem hiding this comment.
Well, task didn't have any requirements to store result in any way, so I've just printed the result.
But surely it's pretty easy to add something like "create table result as" before this select
There was a problem hiding this comment.
Oh, actually now it is, I've made this homework before the task was published in git (it was published much later then lection), so I didn't know we need to save result :) I've updated some parts of the home work to correctly match the task
|
|
||
| !echo Creating tables...; | ||
|
|
||
| -- GLC| The first line in `flights` the is the header, isn't? |
There was a problem hiding this comment.
Header is actually filtered because it's not conformant to the scheme (i.e. first column should be int, etc.)
But I agree that if scheme changes in future, header could sneak into table, so I've updated repo - added setting to skip it in both tables
No description provided.