Комментарии:
Awesome!
Ответить😭i have CS exam in school tomorrow, and SQL is part of the syllabus, what a coincident
ОтветитьGood work. Keep it up💯
ОтветитьNoSQL also please
ОтветитьRight in time for my databases exam🤩
ОтветитьThanks for this, good timing hehe 😀
Ответить❤❤❤❤ brother please make a voice ordering food app NLP with sqlite Or other database.
Auto add data to database with notes.
I which we separate items, number, note.
Than all calculations. ❤❤❤❤❤❤❤
Please give me some idea
love it bro. came at the perfect time
Ответитьawesome. spot on. the way you explain even complex stuff in a easy way, shows that you undersand it exactly. loce it!
Ответитьyo ! good teaching
ОтветитьPeople are still using this?
I am relieved.
My skills are not all outdated. 😅
I have to find an exam to use it though.
Bro this came perfectly in time for my exams ! Thank you.
ОтветитьDefintly to0 fast for starting one's first program after having watched it. But definitely something which gives you an idea what you can do with SQL and convince you to spend a lot more than 90 minutes to study it. One of the most underrated languages. Enjoyed the show (off)
Ответитьthank you very much for this! helps me refresh my memory for interviews. Bookmarked and subscribed!
ОтветитьJust awesome bro. So compact, and so clear explanations, and so understandable.
ОтветитьNice one
ОтветитьChat gpt prompt to generate sample data:
Create table people
(p_id integer primary key auto_increment,
p_name Varchar(255),
p_age Integer,
p_height FLOAT,
p_gender ENUM ('male','female')
);
Create table things(
t_id int Primary Key auto_increment,
t_name varchar (255) Not Null,
t_desc Varchar (255),
foreign key (t_owner) references people (p_id)
);
create table ownership (
o_owner int,
o_thing Int,
Primary Key (o_owner, o_thing),
FOREIGN KEY (O_OWNER) references PEOPLE (P_ID),
FOREIGN KEY (O_THING) references THINGS (T_ID)
);
can you give me some sample data to insert into the above table?
Please also give me person who owns multiple things as well as person who does not own anything.Can you also give me things that are not owned by anyone?
I would have broke it up into two parts one being read focus and the second for write
ОтветитьNote that i have very little experience with SQL so please correct me if I'm wrong
The last example with UNION and UNION ALL. Isn't it that UNION ALL is way faster than UNION (for large datasets extraction of duplicates should be very expensive)?
If so shouldn't we write this query as:
SELECT p_name, t_name FROM people LEFT JOIN things ON p_id = t_owner
UNION ALL
SELECT null, t_name FROM things WHERE t_owner = null;
?
THE ONLY CORRECT WAY TO PRONOUNCE IT IS SEEQUIL ... if you say the individual letters, it makes you sound like a noob. People will litterally refuse to listen to your video if you say S Q L instead of SEEQUIL.
ОтветитьI haven't used SQL in last 15 years. I have an interview next week for a management position. This is a complete refresher course for a beginner or a person like me who wants to brush up on his SQL knowledge bits. Excellent. Thank you.
ОтветитьThank you a lot :)
ОтветитьThank you buddy, helped a lot to get the basics clear for the further implementation : ).
ОтветитьI came here through your FastAPI → SQLAlchemy → SQL(this video) videos, lol.
ОтветитьI prefer compiled videos so thank you sir😊
Ответить