❌

Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

🎯 PostgreSQL Zero to Hero with Parottasalna – 2 Day Bootcamp (FREE!) πŸš€

2 March 2025 at 07:09

Databases power the backbone of modern applications, and PostgreSQL is one of the most powerful open-source relational databases trusted by top companies worldwide. Whether you’re a beginner or a developer looking to sharpen your database skills, this FREE bootcamp will take you from Zero to Hero in PostgreSQL!

What You’ll Learn?

βœ… PostgreSQL fundamentals & installation

βœ… Postgres Architecture
βœ… Writing optimized queries
βœ… Indexing & performance tuning
βœ… Transactions & locking mechanisms
βœ… Advanced joins, CTEs & subqueries
βœ… Real-world best practices & hands-on exercises

This intensive hands on bootcamp is designed for developers, DBAs, and tech enthusiasts who want to master PostgreSQL from scratch and apply it in real-world scenarios.

Who Should Attend?

πŸ”Ή Beginners eager to learn databases
πŸ”Ή Developers & Engineers working with PostgreSQL
πŸ”Ή Anyone looking to optimize their SQL skills

πŸ“… Date: March 22, 23 -> (Moved to April 5, 6)
⏰ Time: Will be finalized later.
πŸ“ Location: Online
πŸ’° Cost: 100% FREE πŸŽ‰

πŸ”— RSVP Here

Prerequisite

  1. Checkout this playlist of our previous postgres session https://www.youtube.com/playlist?list=PLiutOxBS1Miy3PPwxuvlGRpmNo724mAlt

πŸŽ‰ This bootcamp is completely FREE – Learn without any cost! πŸŽ‰

πŸ’‘ Spots are limited – RSVP now to reserve your seat!

PostgreSQL Tasks:

By: Sakthivel
4 September 2024 at 18:03

Table I created table name is β€œmovies”

TASK 1 : Show details for Vijay acted movies.

SELECT * FROM movies WHERE actor=’vijay’;


TASK 2 : Show Vijay movies names only.

SELECT movie FROM movies WHERE actor=’vijay’;


TASK 3 : Show details, lokesh kanagaraj directed movie and actor name starts with β€˜k’ and ends with vowels[a,e,i,o,u].

SELECT * FROM movies WHERE director=’lokesh kanagaraj’ AND actor LIKE β€˜k%’ AND actor SIMILAR TO β€˜%[aeiou]’;


TASK 4 : Show movie name only, lokesh kanagaraj directed movie and actor name starts with β€˜k’ and ends with vowels[a,e,i,o,u].

SELECT movie FROM movies WHERE director=’lokesh kanagaraj’ AND actor LIKE β€˜k%’ AND actor SIMILAR TO β€˜%[aeiou]’;


TASK 5 : Show movie name and actor name only, lokesh kanagaraj directed movie and actor name starts with β€˜k’ and ends with vowels[a,e,i,o,u].

SELECT movie,actor FROM movies WHERE director=’lokesh kanagaraj’ AND actor LIKE β€˜k%’ AND actor SIMILAR TO β€˜%[aeiou]’;


TASK 6 : Show the details, director name starts and ends with same letter.

SELECT * FROM movies WHERE LEFT(director, 1)=RIGHT(director, 1);


TASK 7 : Show the movie name only, the director name starts and ends with same letter.

SELECT movie FROM movies WHERE LEFT(director, 1)=RIGHT(director, 1);


TASK 8 : Show the director name only, the director name start and ends with same letter.

SELECT director FROM movies WHERE LEFT(director, 1)=RIGHT(director, 1);


TASK 9 : Show the movie name, the actors have only five character.

SELECT movie FROM movies WHERE LENGTH(actor)=5;


TASK 10 : Show the movie name and actors name, actors have only five character.

SELECT movie,actor FROM movies WHERE LENGTH(actor)=5;

TASK 11 : Add a column salary_in_crore and values.

ALTER TABLE movies ADD COLUMN salary_in_crore INT;

UPDATE movies SET salary_in_crore =100 WHERE actor = β€˜vijay’;

UPDATE movies SET salary_in_crore =70 WHERE actor = β€˜kamal’;

UPDATE movies SET salary_in_crore =90 WHERE actor = β€˜ajith’;

UPDATE movies SET salary_in_crore =40 WHERE actor = β€˜karthi’;

UPDATE movies SET salary_in_crore =110 WHERE actor = β€˜rajini’;

UPDATE movies SET salary_in_crore =50 WHERE actor = β€˜dhanush’;

UPDATE movies SET salary_in_crore =5 WHERE actor = β€˜soori’;

SELECT * FROM movies;


TASK 12 : Show actor name and salary,order by salary high to low.

SELECT actor, salary_in_crore FROM movies ORDER BY salary_in_crore DESC;


TASK 13 : Show top 3 actor based on salary.

SELECT DISTINCT actor, salary_in_crore FROM movies ORDER BY salary_in_crore DESC LIMIT 3;


❌
❌