Thanks again. Way to go. Looking for the next 99 Days
@bankimdas95175 ай бұрын
Thanks for bringing this new sql challenge playlist.
@shefalikathapa135 ай бұрын
I usually don't comment on videos but your series is really good! Keep up the great work! Really grateful to you. If you could come up with Python Data Analyst Interview questions, it will be great. Cheers! 🎉
@zero_analyst5 ай бұрын
Thanks, will do!
@moureanyuvi5 ай бұрын
with cte as( select count(distinct(CourseId)) as department from student_batch where EnrollmentYear = '2019' ), cte1 as (select StudentID,count(distinct(CourseId)) as total_department from student_batch where EnrollmentYear = '2019' group by StudentID ) select cte1.StudentID from cte join cte1 where department = total_department
@Maheshsai-it4uu5 ай бұрын
Thank you sir 🎉
@aqib53545 ай бұрын
basically i understood your lecture
@sabShrav5 ай бұрын
Sir am getting error in the second question while executing ,"Error Code: 1064. 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 'INT)' at line 3 " please help me on this . thanks
@Shekar_TechPhoenix5 ай бұрын
Please provide us with the table DDL script, and insert values in description so it will ease us to practice
@zero_analyst5 ай бұрын
Check the github link! Its uploaded
@omrahulpandey5 ай бұрын
Hi Sir, can you share the pdf or atleast the questions also, as if we want to practice later on, we can do it our self. Your github repo with the .sql file has only answer but not the question.
@zero_analyst5 ай бұрын
Check the github link question along with dataset is uploaded you can copy paste and practice
@Shekar_TechPhoenix5 ай бұрын
Thank you @@zero_analyst
@chandanpatra10535 ай бұрын
please write the question in the ide for the solution you are explaining.
@Sagar_Rao_5 ай бұрын
can u share the questions pdf
@zero_analyst5 ай бұрын
Its updated in my github click the link from bio
@AmbarGharat5 ай бұрын
Full Outer Join : All numbers from left and rest NULL as its full outer join.
@krishnasai58065 ай бұрын
Where this coding questions? platform
@zero_analyst5 ай бұрын
Download PgAdmin 4 you can practice by yourself! You can get the questions and dataset from my github!
@abhishekpatil73365 ай бұрын
Bro but what happened if the interview asked to don't pass year and count explicitly.
@zero_analyst5 ай бұрын
Will make a video on this!
@shekarsamurai5 ай бұрын
MySQL query for full join: SELECT t1.c1, t2.c2 FROM t1 LEFT JOIN t2 ON t1.c1 = CAST(t2.c2 AS SIGNED) UNION SELECT t1.c1, t2.c2 FROM t1 RIGHT JOIN t2 ON t1.c1 = CAST(t2.c2 AS SIGNED); -- In MySQL, SIGNED is used to cast a string to an integer.
@anushas19105 ай бұрын
Hi, I can see only codes for the questions, please share the file for questions in repo.
@zero_analyst5 ай бұрын
Its uploaded in the github please check day1 pdf
@haroldkumarnaik99715 ай бұрын
Please share all question pdf of this pdf
@zero_analyst5 ай бұрын
Please check the github rep!
@lokeshladdha45204 ай бұрын
WITH stddetail AS ( SELECT std_id, COUNT(course_id) AS no_course_taken, MAX(COUNT(course_id)) OVER () AS max_courses, YEAR(date) AS year FROM students WHERE YEAR(date) = '2019' GROUP BY std_id, YEAR(date) ) SELECT std_id FROM stddetail WHERE no_course_taken = max_courses;
@LokeshGola-ti8ru5 ай бұрын
Bhai 1-2 Hindi m Bno do 🙏🙏
@HARSHRAJ-wz2rp4 ай бұрын
with cte as( select * FROM student_batch where EnrollmentYear=2019 ) select StudentID FROM cte GROUP BY StudentID HAVING COUNT(DISTINCT CourseID)= (select COUNT(DISTINCT CourseID) FROM student_batch where EnrollmentYear=2019);