Jul 11, 2024
Trainer: Ravindra
**Tell me about yourself: (Faruk) **
**Project Roles and Responsibilities: (Faruk) **
SQL Joins
Row Number, Rank, Dense Rank:
Identify Duplicate Records
SELECT employe_id, employe_name, salary
FROM employee
GROUP BY employe_id, employe_name, salary
HAVING COUNT(*) > 1;
Extract Domain from Email
SELECT email, SUBSTRING(email, instr(email, '@') + 1) AS domain_name
FROM table_name;
head -n 10 abc.txt
sed -i 's/ravindra/ram/g' file.txt
grep 'SAA' file.txt
ls, rm, mkdir, grep, head, tail, sortFact Table:
Slowly Changing Dimensions (SCD):
Dimension Table:
End of Mock Interview.