Skip to main content

Posts

Featured

SQL Project Planning in SQL HackerRank Solution

  SELECT START_DATE, MIN(END_DATE) FROM (SELECT START_DATE FROM PROJECTS WHERE START_DATE NOT IN (SELECT END_DATE FROM PROJECTS)) A, (SELECT END_DATE FROM PROJECTS WHERE END_DATE NOT IN (SELECT START_DATE FROM PROJECTS)) B WHERE START_DATE < END_DATE GROUP BY START_DATE ORDER BY (MIN(END_DATE) - START_DATE), START_DATE;  

Latest Posts

Print Prime Numbers in SQL | Hacker Rank Solution

Draw The Triangle 2 in SQL | HackerRank Solution

Write a Python Program to Find the Size (Resolution) of an Image

Write the recursive version of the factorial calculation upto a number n

Write a program that prompts a user to enter the radius of a circle. If the radius is greater than zero then calculate and print the area and circumference of the circle.

Python Program Write a program to calculate the sum of numbers from 1 to 20 which is not divisible by2, 3 ,4 or 5