filmov
tv
SQL & Data Analytics for Beginners | Part 3: SQL Syntax (#1)

Показать описание
I hope you all enjoyed the video. If you'd like to learn more or got stuck, feel free to let me know in the comments below.
Code:
CREATE TABLE refinery_clients (
refiner_name TEXT NOT NULL,
units_sold INT NOT NULL,
status_sent TEXT NULL,
sale_id INT NOT NULL
);
INSERT INTO refinery_clients VALUES
('Big Refine Co.', 10000,'true', '1001'),
('Petrol Maker LLC.', 4500,'false', '1002'),
('Gasoline Factory Inc.', 20000,'true', '1003'),
('Jackson & Family', 3200,'true', 1004),
('Clear Prep LLC.', 13400,'', 1005),
('Titanium Refineries Inc.', 50000,'', 1006),
('Fake Oil Company', 0,'true', 1007)
;
CREATE TABLE distribution_channels (
dis_name TEXT NOT NULL,
status_received TEXT NULL,
sale_id INT NOT NULL
);
INSERT INTO distribution_channels VALUES
('Gas n Go','false', 1002),
('Gasoline LLC.','true', 1001),
('Quick Gas','true', 1003),
('Pit Stop','true', 1004),
('Real Energy','', 1005),
('Car Station Co.','', 1006)
;
Code:
CREATE TABLE refinery_clients (
refiner_name TEXT NOT NULL,
units_sold INT NOT NULL,
status_sent TEXT NULL,
sale_id INT NOT NULL
);
INSERT INTO refinery_clients VALUES
('Big Refine Co.', 10000,'true', '1001'),
('Petrol Maker LLC.', 4500,'false', '1002'),
('Gasoline Factory Inc.', 20000,'true', '1003'),
('Jackson & Family', 3200,'true', 1004),
('Clear Prep LLC.', 13400,'', 1005),
('Titanium Refineries Inc.', 50000,'', 1006),
('Fake Oil Company', 0,'true', 1007)
;
CREATE TABLE distribution_channels (
dis_name TEXT NOT NULL,
status_received TEXT NULL,
sale_id INT NOT NULL
);
INSERT INTO distribution_channels VALUES
('Gas n Go','false', 1002),
('Gasoline LLC.','true', 1001),
('Quick Gas','true', 1003),
('Pit Stop','true', 1004),
('Real Energy','', 1005),
('Car Station Co.','', 1006)
;
How I use SQL as a Data Analyst
Learn SQL for Data Analysis in one hour (with sample dataset + 50 queries)
How I use SQL as a data analyst
Learn Basic SQL in 15 Minutes | Business Intelligence For Beginners | SQL Tutorial For Beginners 1/3
Data Analyst SQL Question for Beginner
🔥SQL For Data Analytics 2023 | Skills Needed For Data Analysis In SQL | SQL Tutorial | Simplilearn...
I learned SQL for data analytics in 15 days | From Scratch
Data Analyst Portfolio Project - SQL | Step-by-Step Guide From SQL Database to Interactive Dashboard
POWERBI SCENARIOS | DATA ANALYST | PART - 2 | DownTownCoders
I started my data analyst career taking these beginner courses
Data Analytics Full Course 2025 | Data Analytics Tutorial | Data Analyst Course | Simplilearn
What is SQL? [in 4 minutes for beginners]
Top Excel courses for Data Analysts 🧑🎓📊
How I Would Learn Data Analysis (If I Could Start Over in 2024)
5 Best SQL Websites to Practice n Learn Interview Questions for FREE
BEST Websites to Learn SQL FAST 🏃🏽♂️💨
Day in the life of a Data Analyst 🤓📊
SQL Tutorial for Beginners
FASTEST Way to Become a Data Analyst and ACTUALLY Get a Job
SQL... but for non-data nerds
How I use Excel as a Data Analyst 📊🤓
Data Analytics 3 months roadmap #dataanalytics #datascience #upgradeskill #livetraining
FULL SQL DATABASE COURSE | Learn SQL in 70 minutes
How to learn SQL for data science interview (the minimize effort maximize outcome way)
Комментарии