In this video we will solve how to find largest single number using Group by and case when in SQL.
1.SQL Interview Questions
• Query To Find Maximum, Minimum and Average...
2.SQL Basic
• Introduction to Structured Query Language(...
3.SQL Advance Concept
• VIEWS IN SQL || WHY WE USE VIEWS IN SQL ||...
4. Tableau
• Funnel chart in Tableau || Tableau Tutorial
5. Python Tutorial
https://lnkd.in/dEcjgjSw
script:
create table MyNumbers
(
num int
);
insert into MyNumbers values(8),
(8),
(3),
(3),
(1),
(4),
(5),
(6)