We continue working with functions. We first covered functions that affect strings and now we have moved to aggregate functions to affect numbers.
Download the class notes for day 4.
Just another CUNY Academic Commons site
We continue working with functions. We first covered functions that affect strings and now we have moved to aggregate functions to affect numbers.
Download the class notes for day 4.
We have started working with functions. Now we can change what the output looks like.
Download the class notes for day 3.
We are getting data from a table.
SELECT field1, field2, field3 FROM table1;
We are getting data from tables.
SELECT table1.common_field1, -- field/data on both tables table1.field2, table2.field3, table2.field4 FROM table1 -- left table (main if `LEFT JOIN`) INNER|LEFT|RIGHT JOIN table2 -- right table (main if `RIGHT JOIN`) ON table1.common_field1 = table2.common_field1; -- relation between tables
Download the class notes for day 2.
We have started a new course. It’s time to have fun, but let’s start with cookies first.
Download the class notes for day 1.
Free:
Paid:
More information:
For reference purposes only, not responsible for external resources.