SILS iSchool

week of 05 November 2020



Value Added | daily

Class Schedule

Basics | sessions 01-03
  1. 13 Aug intro and clients | lecture | labs
  2. 20 Aug servers and command line | lecture | labs
  3. 27 Aug networks and protocols | lecture | labs
Web Development | sessions 04-07

  1. 03 Sep structural layer | lecture | labs
  2. 10 Sep presentational layer | lecture | labs
  3. 17 Sep using a structure | lecture | labs
  4. 24 Sep behavioral layer | lecture | labs
Dealing with Markup | sessions 08-09
  1. 01 Oct control objects and display | lecture | labs
  2. 08 Oct tools that read markup | lecture | labs
Working with Data | sessions 10-13
  1. 15 Oct formulas, functions, vectors | lecture | labs
  2. 22 Oct data display | lecture | labs
  3. 29 Oct manipulate data sets | lecture | labs
  4. 05 Nov relational data bases | lecture | labs
Presentation | session 14
  1. 12 Nov designing and delivering a presentation | lecture | labs


Structured Query Language (SQL) is the standard means of manipulating and querying data in relational databases.
You may have practiced with W3Schools SQL tutorial, but now let's use Mr. Jones' Practice SQL tool to create a few queries.
You don't have to do this for a grade,
but it would not hurt to try it out and get comfortable with SQL syntax

Create three SQL queries

  1. select all the titles from tblBook where the language is German and include both the titles and the language in the result
    if your query is successful, paste a copy of the query in cell N1 on your 05-Summary worksheet
  2. select all the names from tblPublisher where the city is like Berlin and include both the name and the country in the result
    if your query is successful, paste a copy of the query in cell N2 on your 05-Summary worksheet
  3. select all the titles from tblBook where the topic includes the word Virginia and include both the titles and the topic in the result, sorted by the title
    if your query is successful, paste a copy of the query in cell N3 on your 05-Summary worksheet

back to top

week of 05 November labs | VLOOKUP | SQL creation