LeetCode 1667 Interview SQL Question with Detailed Explanation | Practice SQL

preview_player
Показать описание

In this video I solve and explain a leetcode SQL question using MySQL query. This question has been asked in Apple, Facebook, Amazon, Google, Adobe, Microsoft, Adobe interviews or what we popularly call FAANG interviews.
I explain the related concept as well. This question includes points to keep in mind to develop SQL queries.

LeetCode is the best platform to help you enhance your skills, expand your knowledge and prepare for technical interviews.

If you found this helpful, Like and Subscribe to the channel for more content.

#LeetCodeSQL #FAANG #SQLinterviewQuestions
Рекомендации по теме
Комментарии
Автор

wow sir you are awesome you explain everthing in simple way your teaching manner i love it please keep it up sir we need you

elitebook
Автор

A simple variation:


select user_id, upper(left(name, 1))+
lower(substring(name, 2, len(student_name)-1))
from Users
order by user_id

meenayegan
Автор

can we first lower the name column and then upper the first letter? upper(substring(lower(name), 1, 1))

larissayu
Автор

Why can't we go with regexp in oracle?

bhamjjjjjj
Автор

Why we Len-1 ? Alice :len = 5 ? Or it counts 0, 1, 2, 3, 4?

phanphancharee