Coder Baba @coder_baba Channel on Telegram

Coder Baba

@coder_baba


Everything about programming for beginners.
1 and only official telegram channel of CODERBABA India.

Content:
.NET Developer,
Programming (ASP. NET, VB. NET, C#, SQL Server),
& Projects
follow me https://linktr.ee/coderbaba
*Programming
*Coding
*Note

Coder Baba (English)

Are you a beginner in the world of programming? Looking to learn everything you need to know to kickstart your coding journey? Look no further than Coder Baba, the 1 and only official Telegram channel of CODERBABA India! This channel is your one-stop destination for all things programming, with a focus on .NET development, ASP.NET, VB.NET, C#, SQL Server, and various projects. Coder Baba is here to guide you through the world of programming, offering valuable insights, tips, and resources to help you become a skilled coder. Whether you're a newbie looking to learn the basics or an experienced programmer seeking to enhance your skills, Coder Baba has something for everyone. Join us today and let's dive into the exciting world of programming together! Follow Coder Baba on https://linktr.ee/coderbaba for more information and updates. Don't miss out on the opportunity to improve your programming skills and unleash your full potential! Programming, coding, and taking notes have never been this easy and fun. Join Coder Baba now and start your coding journey today.

Coder Baba

21 Nov, 13:19


Java projects πŸ‘†πŸ‘†

Coder Baba

21 Nov, 13:19


Java projects πŸ‘†πŸ‘†

Coder Baba

21 Nov, 13:18


4 Java projects πŸ‘‡ with source code

Coder Baba

20 Nov, 12:33


πŸ”₯ Create an EPIC Animated Login Page! πŸ’»βœ¨ | HTML, CSS & JavaScript πŸš€ #Shorts
https://fb.watch/vZA7-g7B5B/

Coder Baba

20 Nov, 12:32


https://www.facebook.com/share/v/15RDL1fhhN/

Coder Baba

20 Nov, 12:31


follow my facebook page

Coder Baba

18 Nov, 13:29


πŸ“ŠπŸ’» Ace Your SQL Interview! πŸ’Όβœ¨

πŸš€ Just uploaded a must-watch video on YouTube:
"SQL Interview Question: Calculate Cumulative Sum of Sales for Employees"


πŸ” Learn step-by-step how to calculate the cumulative sum of sales for each employee. This tutorial is perfect for:
βœ… SQL beginners
βœ… Job seekers preparing for technical interviews
βœ… Anyone looking to enhance their database skills

πŸŽ₯ Watch the video now: https://youtu.be/baWTD9S0dpY

πŸ’‘ Make your SQL skills stand out in interviews and secure your dream job!

πŸ’¬ Let me know your thoughts in the comments, and don’t forget to like, share, and subscribe for more awesome content! πŸš€

#SQLInterviewQuestions #SQLQuery #SQLTutorial #CumulativeSum #SQLJobs #LearnSQL #SQLForBeginners #InterviewPrep #CodingTutorial #DatabaseManagement

πŸ‘‰ Follow for more learning resources! 🌟

Coder Baba

18 Nov, 13:21


πŸš€ Master SQL for Interviews! πŸ“Š

πŸ’‘ SQL Challenge: Ready to test your skills? Here’s a commonly asked SQL Interview Question that you must know to ace your next job interview! πŸ‘‡

πŸ”₯ Question:
Write a SQL query to calculate the cumulative sum of sales for each employee. The result should include:
πŸ‘‰ EmployeeID
πŸ‘‰ SaleDate
πŸ‘‰ CumulativeSales



--SQL Code to Create the Table:

CREATE TABLE Sales (
EmployeeID INT,
SaleDate DATE,
SaleAmount DECIMAL(10, 2)
);


--Insert Sample Data into the Table

INSERT INTO Sales (EmployeeID, SaleDate, SaleAmount) VALUES
(1, '2024-01-01', 100.00), -- Employee 1 made a sale of 100 on Jan 1
(1, '2024-01-02', 150.00), -- Employee 1 made another sale on Jan 2
(1, '2024-01-03', 200.00), -- Employee 1 made another sale on Jan 3
(2, '2024-01-01', 120.00), -- Employee 2 made a sale on Jan 1
(2, '2024-01-02', 180.00), -- Employee 2 made another sale on Jan 2
(3, '2024-01-01', 200.00), -- Employee 3 made a sale on Jan 1
(3, '2024-01-03', 100.00), -- Employee 3 made a sale on Jan 3
(3, '2024-01-04', 50.00); -- Employee 3 made another sale on Jan 4

✨ Here’s the SQL Query Solution:
WITH CumulativeSales AS (
SELECT
EmployeeID,
SaleDate,
SaleAmount,
(SELECT SUM(SaleAmount)
FROM Sales AS S2
WHERE S2.EmployeeID = S1.EmployeeID
AND S2.SaleDate <= S1.SaleDate) AS CumulativeSales
FROM Sales S1
)
SELECT
EmployeeID,
SaleDate,
SaleAmount,
CumulativeSales
FROM CumulativeSales
ORDER BY EmployeeID, SaleDate;

πŸ“Œ For a detailed explanation and additional learning, watch my YouTube video: πŸŽ₯
https://youtu.be/baWTD9S0dpY

πŸ‘‰ Follow for More Insights: @coder_baba
πŸ“Œ Don't forget to share this post with others preparing for technical interviews!

#SQLInterviewQuestions #DatabaseSkills #SQLServer #LearnSQL #InterviewPreparation #CumulativeSum #CodingTips #coderbaba

Coder Baba

17 Nov, 14:59


πŸš€ Join Us on Facebook! 🌟

Hey there, amazing people! πŸ™Œ

I’ve just launched my Facebook page dedicated to bringing you awesome content, including funny reactions, daily vlogs, and much more! πŸŽ₯πŸ’₯ If you love a good laugh and exciting reactions, come join the Stardust React community! 😎

Click here to follow and be a part of the fun:
πŸ‘‰ https://www.facebook.com/coderbaba

Coder Baba

17 Nov, 05:36


https://www.facebook.com/share/r/Xy6L5nrgB1LD8oqn/

Coder Baba

15 Nov, 13:08


https://youtube.com/shorts/kgaZVLjX4hc?feature=share

Coder Baba

14 Nov, 06:54


https://youtube.com/shorts/g8rCsznI-84?feature=share

Coder Baba

11 Nov, 06:06


Complete Project in one videoπŸ‘‡πŸ‘‡
https://youtu.be/lX9MLcnjpgE?si=ZphNEQ5ei7j-UWPb

Coder Baba

03 Nov, 14:44


essential sql interview questions

1 Explain Order of Execution of SQL query
2 Provide a use case for each of the functions Rank, Dense_Rank & Row_Number
3 Write a query to find the cumulative sum/Running Total
4 Find the Most selling product by sales/ highest Salary of employees
5 Write a query to find the 2nd/nth highest Salary of employees
6 Difference between union vs union all
7 Identify if there any duplicates in a table
8 Scenario based Joins question, understanding of Inner, Left and Outer Joins via simple yet tricky question
9 LAG, write a query to find all those records where the transaction value is greater then previous transaction value
10 Rank vs Dense Rank, query to find the 2nd highest Salary of employee ( Ideal soln should handle ties)
11 Write a query to find the Running Difference (Ideal sol'n using windows function)
12 Write a query to display year on year/month on month growth
13 Write a query to find rolling average of daily sign-ups
14 Write a query to find the running difference using self join (helps in understanding the logical approach, ideally this question is solved via windows function)
15Write a query to find the cumulative sum using self join
(helps in understanding the logical approach, ideally this question is solved via windows function
#coderbaba #SQLTips

follow @coder_baba

Coder Baba

03 Nov, 07:34


Master Expense Management System in C# | One-Shot Full Tutorial
https://youtu.be/lX9MLcnjpgE