This is the SQL practice to let me understand how this works in a very efficient way!
Day 12 MS SQL Server: Installation, Stored Procedure
Day 11 IN, Order by
Day 9 + - x / as
Day 8 Where (equals =) (equals and greater than >=) (equals and less than <=) (not equals to !=)
Day 7 Order by
Day 6 LIMIT
Day 5
Udacity Course 1
- Creating a table and insert data into it.
- Select all the movies.
- Add a second query after the first, that retrieves only the movies that were released in the year 2000 or later, not before. Sort the results so that the earlier movies are listed first.
- Select the SUM of minutes it will take to do all of the items on your TODO list.
- SUM COUNT AVERAGE
a, Add another SELECT that uses OR to show the titles of the songs that have an 'epic' mood or a release date after 1990. b, Add another SELECT that uses AND to show the titles of songs that are 'epic', and released after 1990, and less than 4 minutes long.