iamrupnath - Jobs & Internships Updates
25.2K subscribers
25 photos
1 video
94 files
2.51K links
๐Ÿ’ป Let's learn Programming!
๐Ÿ’ป Daily Coding Content
๐Ÿ‘‰ Follow LinkedIn
https://www.linkedin.com/in/rupnath-shaw
Download Telegram
๐Ÿ“Wipro is hiring for School of IT Infrastructure Management

Qualification: Bachelors / Masters Degree

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: INR 19,618 per month

Job Location: Bengaluru, INDIA

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/wipro-off-campus-hiring-sim/
๐Ÿ“Zeotap is hiring for Software Engineer - Intern

Qualification: Bachelors / Masters Degree

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น7-8 LPA

Job Location: Bengaluru

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/zeotap-off-campus-hiring-software-engineer-intern/
๐Ÿ“Finastra is hiring for Software Engineer

Qualification: Bachelors / Masters Degree

Experience: Fresher 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น7 LPA

Job Location: Pune

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/finastra-off-campus-hiring-software-engineer-2/
๐Ÿ“Verizon is hiring for Full stack engineer

Qualification: Bachelors / Masters Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น8-12 LPA

Job Location: Bangalore

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/verizon-off-campus-hiring-full-stack-engineer/
๐Ÿ“SentinelOne is hiring for Solution Architect Intern

Qualification: Bachelors / Masters Degree

Experience: 0-2 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น5 LPA

Job Location: Bangalore

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/sentinelone-hiring-solution-architect-intern/
๐Ÿ“Unisys is hiring for Assoc Tech Svc Desk

Qualification: diploma or GED

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น5 LPA

Job Location: Bangalore

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/unisys-off-campus-hiring-assoc-tech-svc-desk/
๐Ÿ“Tata Technologies is hiring for AI Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-2 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น3-7 LPA

Job Location: PUNE

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/tata-technologies-off-campus-hiring-ai-engineer/
The GROUP BY clause in SQL is used to arrange identical data into groups. This is particularly useful when combined with aggregate functions like COUNT(), SUM(), AVG(), MIN(), and MAX(). The GROUP BY clause groups rows that have the same values in specified columns into summary rows.

โ–ŽBasic Syntax

SELECT column1, aggregate_function(column2)
FROM table_name
WHERE condition
GROUP BY column1;


โ–ŽExample 1: Counting Rows

Suppose you have a table called employees with the following structure:

| id | department | salary |
|----|------------|--------|
| 1  | HR         | 50000  |
| 2  | IT         | 60000  |
| 3  | HR         | 55000  |
| 4  | IT         | 70000  |
| 5  | Sales      | 65000  |

To find out how many employees are in each department, you can use:

SELECT department, COUNT(*) AS employee_count
FROM employees
GROUP BY department;


Result:

| department | employee_count |
|------------|----------------|
| HR         | 2              |
| IT         | 2              |
| Sales      | 1              |

โ–ŽExample 2: Summing Salaries

To calculate the total salary paid to employees in each department, you can use:

SELECT department, SUM(salary) AS total_salary
FROM employees
GROUP BY department;


Result:

| department | total_salary |
|------------|--------------|
| HR         | 105000       |
| IT         | 130000       |
| Sales      | 65000        |

โ–ŽExample 3: Average Salary

To find the average salary of employees in each department:

SELECT department, AVG(salary) AS average_salary
FROM employees
GROUP BY department;


Result:

| department | average_salary |
|------------|----------------|
| HR         | 52500          |
| IT         | 65000          |
| Sales      | 65000          |

โ–ŽExample 4: Grouping by Multiple Columns

You can also group by multiple columns. For instance, if you had another column for job_title:

| id | department | job_title | salary |
|----|------------|-----------|--------|
| 1  | HR         | Manager   | 50000  |
| 2  | IT         | Developer | 60000  |
| 3  | HR         | Assistant | 55000  |
| 4  | IT         | Manager   | 70000  |
| 5  | Sales      | Executive | 65000  |

To count employees by both department and job_title:

SELECT department, job_title, COUNT(*) AS employee_count
FROM employees
GROUP BY department, job_title;


Result:

| department | job_title | employee_count |
|------------|-----------|----------------|
| HR         | Manager   | 1              |
| HR         | Assistant | 1              |
| IT         | Developer | 1              |
| IT         | Manager   | 1              |
| Sales      | Executive | 1              |

โ–ŽImportant Notes

1. Aggregate Functions: Any column in the SELECT statement that is not an aggregate function must be included in the GROUP BY clause.
 
2. HAVING Clause: You can filter groups using the HAVING clause, which is similar to the WHERE clause but is used for aggregated data. For example:

  
   SELECT department, COUNT(*) AS employee_count
   FROM employees
   GROUP BY department
   HAVING COUNT(*) > 1;
  


   This would return only departments with more than one employee.

โ–ŽConclusion

The GROUP BY clause is a powerful tool in SQL for summarizing data. It allows you to analyze and report on your datasets effectively by grouping similar data points and applying aggregate functions.
๐—ฆ๐—ค๐—Ÿ ๐— ๐˜‚๐˜€๐˜-๐—ž๐—ป๐—ผ๐˜„ ๐——๐—ถ๐—ณ๐—ณ๐—ฒ๐—ฟ๐—ฒ๐—ป๐—ฐ๐—ฒ๐˜€ ๐Ÿ“Š

Whether you're writing daily queries or preparing for interviews, understanding these subtle SQL differences can make a big impact on both performance and accuracy.

๐Ÿง  Hereโ€™s a powerful visual that compares the most commonly misunderstood SQL concepts โ€” side by side.

๐Ÿ“Œ ๐—–๐—ผ๐˜ƒ๐—ฒ๐—ฟ๐—ฒ๐—ฑ ๐—ถ๐—ป ๐˜๐—ต๐—ถ๐˜€ ๐˜€๐—ป๐—ฎ๐—ฝ๐˜€๐—ต๐—ผ๐˜:
๐Ÿ”น RANK() vs DENSE_RANK()
๐Ÿ”น HAVING vs WHERE
๐Ÿ”น UNION vs UNION ALL
๐Ÿ”น JOIN vs UNION
๐Ÿ”น CTE vs TEMP TABLE
๐Ÿ”น SUBQUERY vs CTE
๐Ÿ”น ISNULL vs COALESCE
๐Ÿ”น DELETE vs DROP
๐Ÿ”น INTERSECT vs INNER JOIN
๐Ÿ”น EXCEPT vs NOT IN

React โ™ฅ๏ธ for detailed post with examples
๐Ÿ“Honeywell is hiring for Software Engr I

Qualification: Bachelors Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น6 - 13 LPA

Job Location: Madurai

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/honeywell-off-campus-hiring-software-engineer/
๐Ÿ“Allianz is hiring for GEN AI Fullstack Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น6 LPA

Job Location: Pune

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/allianz-hiring-ai-fullstack-engineer/
๐Ÿ“Sprinklr is hiring for Software Development Engineer, QA

Qualification: B.E/B.Tech

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น17 LPA

Job Location: Gurgaon

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/sprinklr-hiring-sde-qa-freshers/
๐Ÿ“Thomson Reuters is hiring for Software Engineer

Qualification: Bachelors / Masters Degree

Experience: 0-1 years 

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น5 LPA

Job Location: Hyderabad

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/thomson-reuters-hiring-software-engineer/
๐Ÿ“Morgan Stanley is hiring for UI Developer (React)

Qualification: Bachelors / Masters Degree

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น7-28 LPA

Job Location: Bengaluru

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/morgan-stanley-hiring-ui-developer-react/
๐Ÿ“PwC is hiring for Cyber R&R - ER&CS - Data Analytics

Qualification: Bachelors / Masters Degree

Experience: Fresher

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น7-10 LPA

Job Location: Bangalore,Mumbai, Kolkata, Hyderabad India

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/pwc-off-campus-hiring-data-analytics-2/
๐Ÿ“Accenture is hiring for Technology Platform Engineer

Qualification: Any Graduation

Experience: 0 โ€“ 2 years

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น4 LPA

Job Location: Gurugram 

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/accenture-hiring-tech-platform-engineer/
Python Roadmap for 2025: Complete Guide

1. Python Fundamentals
1.1 Variables, constants, and comments.
1.2 Data types: int, float, str, bool, complex.
1.3 Input and output (input(), print(), formatted strings).
1.4 Python syntax: Indentation and code structure.

2. Operators
2.1 Arithmetic: +, -, *, /, %, //, **.
2.2 Comparison: ==, !=, <, >, <=, >=.
2.3 Logical: and, or, not.
2.4 Bitwise: &, |, ^, ~, <<, >>.
2.5 Identity: is, is not.
2.6 Membership: in, not in.

3. Control Flow
3.1 Conditional statements: if, elif, else.
3.2 Loops: for, while.
3.3 Loop control: break, continue, pass.

4. Data Structures
4.1 Lists: Indexing, slicing, methods (append(), pop(), sort(), etc.).
4.2 Tuples: Immutability, packing/unpacking.
4.3 Dictionaries: Key-value pairs, methods (get(), items(), etc.).
4.4 Sets: Unique elements, set operations (union, intersection).
4.5 Strings: Immutability, methods (split(), strip(), replace()).

5. Functions
5.1 Defining functions with def.
5.2 Arguments: Positional, keyword, default, *args, **kwargs.
5.3 Anonymous functions (lambda).
5.4 Recursion.

6. Modules and Packages
6.1 Importing: import, from ... import.
6.2 Standard libraries: math, os, sys, random, datetime, time.
6.3 Installing external libraries with pip.

7. File Handling
7.1 Open and close files (open(), close()).
7.2 Read and write (read(), write(), readlines()).
7.3 Using context managers (with open(...)).

8. Object-Oriented Programming (OOP)
8.1 Classes and objects.
8.2 Methods and attributes.
8.3 Constructor (init).
8.4 Inheritance, polymorphism, encapsulation.
8.5 Special methods (str, repr, etc.).

9. Error and Exception Handling
9.1 try, except, else, finally.
9.2 Raising exceptions (raise).
9.3 Custom exceptions.

10. Comprehensions
10.1 List comprehensions.
10.2 Dictionary comprehensions.
10.3 Set comprehensions.

11. Iterators and Generators
11.1 Creating iterators using iter() and next().
11.2 Generators with yield.
11.3 Generator expressions.

12. Decorators and Closures
12.1 Functions as first-class citizens.
12.2 Nested functions.
12.3 Closures.
12.4 Creating and applying decorators.

13. Advanced Topics
13.1 Context managers (with statement).
13.2 Multithreading and multiprocessing.
13.3 Asynchronous programming with async and await.
13.4 Python's Global Interpreter Lock (GIL).

14. Python Internals
14.1 Mutable vs immutable objects.
14.2 Memory management and garbage collection.
14.3 Python's name == "main" mechanism.

15. Libraries and Frameworks
15.1 Data Science: NumPy, Pandas, Matplotlib, Seaborn.
15.2 Web Development: Flask, Django, FastAPI.
15.3 Testing: unittest, pytest.
15.4 APIs: requests, http.client.
15.5 Automation: selenium, os.
15.6 Machine Learning: scikit-learn, TensorFlow, PyTorch.

16. Tools and Best Practices
16.1 Debugging: pdb, breakpoints.

16.2 Code style: PEP 8 guidelines.
16.3 Virtual environments: venv.
16.4 Version control: Git + GitHub.

๐Ÿ’ฌ Double Tap โค๏ธ for more! ๐Ÿง ๐Ÿ’ป
๐Ÿ“Microsoft is hiring for Software Engineer

Qualification: Bachelors / Masters Degree

Experience: Fresher (0-1 years)

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น15 โ€“ 30 LPA

Job Location: Multiple Locations

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/microsoft-hiring-software-engineers/
๐Ÿ“Zebra is hiring for Cloud Engineer

Qualification: Bachelors Degree

Experience: 0 to 1 years

Batch: 2025 / 2024 / 2023 / 2022

Salary: up to โ‚น10 LPA

Job Location: Pune

๐Ÿ”— ๐—”๐—ฝ๐—ฝ๐—น๐˜† ๐—›๐—ฒ๐—ฟ๐—ฒ: https://techcompreviews.in/zebra-off-campus-hiring-cloud-engineer/