MySQL: How to SELECT data from a TABLE

preview_player
Показать описание
#MySQL #SQL #database

MySQL SELECT WHERE clauses tutorial example explained
Рекомендации по теме
Комментарии
Автор

SELECT * FROM employees;

SELECT first_name, last_name FROM employees;

SELECT last_name, first_name FROM employees;

SELECT *
FROM employees
WHERE employee_id = 1;

SELECT *
FROM employees
WHERE first_name = "Spongebob";

SELECT *
FROM employees
WHERE hourly_pay >= 15;

SELECT hire_date, first_name
FROM employees
WHERE hire_date <= "2023-01-03";

SELECT *
FROM employees
WHERE employee_id != 1;

SELECT *
FROM employees
WHERE hire_date IS NULL;

SELECT *
FROM employees
WHERE hire_date IS NOT NULL;

BroCodez
Автор

Once again, and amazing tutorial for SQL, keep up the excellent work🙌🙌🙌

elliotradley
Автор

A M A Z I N G tutorials 🙏
And also so so EASY to learn using SpongeBob references 😭❤️

manuel.camelo
Автор

Awesome video, super helpful and simple! Will you be covering joins (left join, right join, inner join) anytime soon?

itstonyshark
Автор

Awesome presentation. Simple and easy to understanding. 👍 Carry on, mr. Bro!

chap_
Автор

These lessons are great. Given in small digestible piece…

mastershonobi
Автор

so glad that i found your channel <3

kezeiah
Автор

Youre channel is the best
It needs more subscriberS
Im still in college and i dont have any bank account cause im broke
But wen i get a job
Imma donate for your fundraising

Hope more ppl like you

raevenconsolacion
Автор

You should rename the video to: Spongebobs salary leaked!!😂😂.

Anyways. Great tutorial!

Alex-hcwm
Автор

Bro, how we can change theme, font colours in MySQL workbench?. Plz tell in next vidio

mr.unknown
Автор

can you make data structure algorithm video for C++? Please!! If it takes money we will pay

jenis-
Автор

How can I get this program .tomorrow I have an exam and thank you bro

hope_
Автор

yo bro we need a solidity course const("you are the best")

BareHandsT
Автор

selects are fine until you have to learn about subquerys and joins

ShinMugenNoKabe
Автор

I like how Plankton doesn't work there lmao.

the_jones