1 / 60

SQL_PPT_lecture1

SQL_PPT_lecture1

Ariel36
Download Presentation

SQL_PPT_lecture1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to Databases with SQL Querying

  2. Song of Solomon Pat Conroy Goodnight Moon Prince of Tides Antoine de Saint-Exupéry Le Petit Prince The Overstory F. Scott Fitzgerald Toni Morrison The Great Gatsby Richard Powers Frankenstein Margaret Wise Brown Mary Shelley

  3. title author Toni Morrison Song of Solomon Margaret Wise Brown Goodnight Moon Richard Powers The Overstory The Great Gatsby F. Scott Fitzgerald Frankenstein Mary Shelley Le Petit Prince Antoine de Saint-Exupéry Prince of Tides Pat Conroy

  4. Apple Numbers Google Sheets Microsoft Excel …

  5. Scale

  6. Scale Frequency

  7. Scale Frequency Speed

  8. Database A collection of data organized for creating, reading, updating, and deleting.

  9. Database Management System Software via which you can interact with a database.

  10. MySQL Oracle PostgreSQL SQLite …

  11. SQL A language via which you can create, read, update, and delete data in a database.

  12. Structured Query Language A language via which you can create, read, update, and delete data in a database.

  13. SQL A language via which you can create, read, update, and delete data in a database.

  14. Querying

  15. What's the most-liked post on our platform?

  16. Is our number of daily users growing or shrinking?

  17. Which songs are most like the song a user just played?

  18. Visual Studio Code SQLite …

  19. VS Code SQLite …

  20. Phones

  21. Desktop

  22. Websites

  23. sqlite3 FILENAME

  24. What data is in our database?

  25. SELECT

  26. LIMIT

  27. OFFSET

  28. WHERE

  29. = != <>

  30. NOT

  31. Style

  32. SELECT "title" FROM "longlist" WHERE "author" = 'Fernanda Melchor';

  33. SELECT "title" FROM "longlist" WHERE "author" = 'Fernanda Melchor';

  34. SELECT "title" FROM "longlist" WHERE "author" = 'Fernanda Melchor';

  35. NULL

  36. IS NULL IS NOT NULL

  37. LIKE

  38. % _

  39. AND OR ()

  40. > < >= <=

  41. BETWEEN … AND …

  42. ORDER BY

  43. ORDER BY … ASC ORDER BY … DESC

  44. COUNT AVG MIN MAX SUM

  45. ROUND

  46. DISTINCT

  47. .quit

  48. SELECT column FROM table;

More Related