VehiclesFashionRecipesBlogsHuntTravelsSportFunHandmadeITEducation
Mini-Games
x

x
zakruti.com » IT - Software » freeCodeCamp.org
SQL Tutorial - Full Database Course for Beginners

SQL Tutorial - Full Database Course for Beginners

FBTwitterReddit

video description

Rating: 4.0; Vote: 1
In this course, we'll be looking at database management basics and SQL using the MySQL RDBMS. Want more from Mike? He's starting a coding RPG/Bootcamp - https://simulator.dev/ The course is designed for beginners to SQL and database management systems, and will introduce common database management topics. Throughout the course we'll be looking at various topics including schema design, basic C.R.U.D operations, aggregation, nested queries, joins, keys and much more. You can get PopSQL to follow along here: http://popsql.com/freecodecamp -Company Database Code: https://www.giraffeacademy.com/databases/sql/creating-company-database/ -- Contents - -- (0:00) Introduction -- (2:36) What is a Database? -- (23:10) Tables & Keys -- (43:31) SQL Basics -- (52:26) MySQL Windows Installation -- (1:01:59) MySQL Mac Installation -- (1:15:49) Creating Tables -- (1:31:05) Inserting Data -- (1:38:17) Constraints -- (1:48:11) Update & Delete -- (1:56:11) Basic Queries -- (2:08:37) Company Database Intro -- (2:14:05) Creating Company Database -- (2:30:27 ) More Basic Queries -- (2:26:24) Functions -- (2:45:13) Wildcards -- (2:53:53) Union -- (3:01:36) Joins -- (3:11:49) Nested Queries -- (3:21:52) On Delete -- (3:30:05) Triggers -- (3:42:12) ER Diagrams Intro -- (3:55:53) Designing an ER Diagram -- (4:08:34) Converting ER Diagrams to Schemas Course developed by Mike Dane. Check out his YouTube channel for more great programming courses: https://www.youtube.com/channel/UCvmINlrza7JHB1zkIOuXEbw -Follow Mike on
Date: 2022-03-14

Comments and reviews: 10


couldn't we have used a JOIN to solve the problem at 3:17:00? I did this
SELECT DISTINCT employee.first_name, employee.last_name-
FROM employee-
JOIN works_with-
ON employee.emp_id = works_with.emp_id-
WHERE works_with.total_sales >= 30000;
I had to use DISTINCT because otherwise you'd get Stanley like 4 different times

reply

Your lecture is extremely useful that not only save me $7,000 from taking a course at college, but also ace the assessment test well for the full-time job application! Thank you sooo much for taking your time to create this lecture from theoretical foundations to specific examples and codes. I really appreciate it !!!
reply

-
CREATE TABLE student (-
student_id INT,-
name VARCHAR(20),-
major VARCHAR(20),-
PRIMARY KEY(student_id)-
);-
DESCRIBE student;
-
everytime I hit RUN, it's giving me syntax error (Error: near line 8: near -DESCRIBE-: syntax error)
Any clue why?

reply

I tried to run the student_id table (around 1:25:00) and received a message saying it failed.
It said:
-You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 5-
What gives?

reply

I don-t know what has happened since this video released, but popSQL says that I can-t have the localhost host name while using a cloud connection. Is anyone else having this problem? I-m on Mac
reply

VARCHAR actually occupies about the same space as the actual length of the stored string in bytes. If you define VARCHAR(1000) and store a string of 10 bytes, it won't use 1000 bytes of space.
reply

At 2:39:20
the code you linked has the column attribute -birth_date- as -birth_day-
so it wasnt working when I typed 'birth_date >... . hope this helps. thanks for the free knowlegde.

reply

This is my first day of learning SQL and I can confidently say you make it seems easy to me. Still on 40 minutes in and I-m understanding the concept. I-m trying to teach myself. Thank you man.
reply

why dont we have teachers like these in my uni!! My teachers always just read a powerpoint presentation and hell some even link us to videos like these instead of teaching us properly!!
reply

Column count doesn't match value count at row 1
I get this error when I try to run INSERT INTO student VALUES (1,'Jack', 'Biology'); at 1:33:15

reply
Add a review, comment






Other channel videos