|
@@ -47,4 +47,16 @@ Directions: Write a query that returns the following collumns:
|
47
|
47
|
|:------------:|:------------:|:-----:|:------------:|:--------------:|
|
48
|
48
|
| Pokemon's name| Trainer's name| Current Level| Primary Type Name| Secondary Type Name|
|
49
|
49
|
|
50
|
|
-Order the data by finding out which trainer has the strongest pokemon so that this will act as a ranking of strongest to weakest trainer. You may interpret strongest in whatever way you want, but you will have to explain your decision.
|
|
50
|
+Order the data by finding out which trainer has the strongest pokemon so that this will act as a ranking of strongest to weakest trainer. You may interpret strongest in whatever way you want, but you will have to explain your decision.
|
|
51
|
+
|
|
52
|
+##Turning in this assignment
|
|
53
|
+
|
|
54
|
+To turn in this assignment, create files for each part with at least one query for each question answered. Above each query include a comment with the question you were answering.
|
|
55
|
+Example:
|
|
56
|
+
|
|
57
|
+```SQL
|
|
58
|
+ # How many characters are in the string 'Hello World!'
|
|
59
|
+ SELECT CHAR_LENGTH('Hello World!') AS length_of_hello_world
|
|
60
|
+```
|
|
61
|
+
|
|
62
|
+For Part 4 specifically also leave a comment explaining how your query is deciding who the strongest trainer is
|