Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I was wondering how to create a house but I'm not that advanced at SQL yet lol
I think this breaks on values of a and b that would overflow uint64_t.
* just means fetch all columns in the table being searched. In this case it is the students table which also has an alias s. Hence why we have SELLECT s.*, which is referring to the alias s, which is the students table and the . says on students give me all the columns. In this case just the * would have worked .
I did this first, then realised I was overthinking haha
Nice extra work! Someone could explain what SELECT s.* does? Is * the wildcard-char?
in select satatement what exactly do then part? is there any possibility to use given labels?
This is a pretty cool solution. I didn't know I could use SQL like that. Keep in mind I'm pretty new to SQL.
Never see this sql before ```
Awesome! I knew there was probably a mathmatical solution but had trouble coming up with it.