Fobic__P

SQL BASICS P1.

Sep 28th, 2022
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. The Role of Databases in Data Science
  2. What will SQL Fundamentals cover?
  3. Manipulating Data
  4. Querying Data
  5. Aggregating Data
  6. Working with Multiple Tables
  7. Data Acquisition
  8.  
  9. What is a Relational Database Management System?
  10.  
  11. On Codecademy, we use both SQLite and PostgreSQL
  12.  
  13. All data stored in a relational database is of a certain data type. Some of the most common data types are:
  14.  
  15. INTEGER, a positive or negative whole number
  16. TEXT, a text string
  17. DATE, the date formatted as YYYY-MM-DD
  18. REAL, a decimal value
  19.  
  20.  
  21.  
  22. SQL BASIC STATEMENTS
  23. CREATE TABLE creates a new table.
  24. INSERT INTO adds a new row to a table.
  25. SELECT queries data from a table.
  26. ALTER TABLE changes an existing table.
  27. UPDATE edits a row in a table.
  28. DELETE FROM deletes rows from a table.
Advertisement
Add Comment
Please, Sign In to add comment