Agenda main content
Agenda for Day 23 of CS 350
- Announcements
- Quiz 3 on Friday
- Short Answer Questions - Comprehensive
- 10 questions, 2 points each (20 points total)
- Closed book, closed Web
- Programming Problem using PHP & Forms
- One problem (30 points total)
- Open book, open Web
- Done on Computer, graded online
- Short Answer Questions - Comprehensive
- Lab Assignments
- Lab 10 due at the start of class today
- No Lab 11 assignment, work on group project
- Project 1 Milestones
- Memorandum 5 explaining updated group norms and justifications for changes due Tuesday (one per team)
- Reading for today
- Today's topics and learning objectives
After today's class, you should be able to- Explain the role of relational databases in Web applications
- Use Structured Query Language (SQL) to
- CREATE TABLE tableName(columnName1, ...)
- INSERT INTO tableName (columnName1, ...) VALUES ('value1', ...)
- SELECT columnName1, ... FROM tableName WHERE criteria ORDER BY columnName
- UPDATE tableName SET columnName1 = value1, ... WHERE criteria
- DELETE FROM tableName WHERE criteria
- Use SQLite, SQL, and PHP in your Web pages
- References