Skip to main content

SQL HACKERRANK select

 



Ans :  select * from CITY where COUNTRYCODE = 'JPN';



Ans: select NAME from CITY where COUNTRYCODE = 'JPN';


Ans :  SELECT DISTINCT CITY
FROM STATION
WHERE CITY LIKE 'a%' OR CITY LIKE 'A%'
   OR CITY LIKE 'e%' OR CITY LIKE 'E%'
   OR CITY LIKE 'i%' OR CITY LIKE 'I%'
   OR CITY LIKE 'o%' OR CITY LIKE 'O%'
   OR CITY LIKE 'u%' OR CITY LIKE 'U%';

Remember: some databases are case-sensitive so think in both perspectives 



Ans : SELECT DISTINCT CITY
FROM STATION
WHERE CITY LIKE '%a' OR CITY LIKE '%A'
   OR CITY LIKE '%e' OR CITY LIKE '%E'
   OR CITY LIKE '%i' OR CITY LIKE '%I'
   OR CITY LIKE '%o' OR CITY LIKE '%O'
   OR CITY LIKE '%u' OR CITY LIKE '%U';


/*
    Enter your query here and follow these instructions:
    1. Please append a semicolon ";" at the end of the query and enter your query in a single line to avoid error.
    2. The AS keyword causes errors, so follow this convention: "Select t.Field From table1 t" instead of "select t.Field From table1 AS t"
    3. Type your code immediately after comment. Don't leave any blank line.
*/SELECT DISTINCT CITY
FROM STATION
WHERE LEFT(CITY, 1) IN ('A', 'E', 'I', 'O', 'U', 'a', 'e', 'i', 'o', 'u')
  AND RIGHT(CITY, 1) IN ('A', 'E', 'I', 'O', 'U', 'a', 'e', 'i', 'o', 'u');

Explaination:

  • LEFT(CITY, 1): Extracts the first character of CITY and checks if it is a vowel.
  • RIGHT(CITY, 1): Extracts the last character of CITY and checks if it is a vowel.
  • IN ('A', 'E', 'I', 'O', 'U', 'a', 'e', 'i', 'o', 'u'): Ensures case-insensitive vowel matching.
  • DISTINCT: Ensures the results do not contain duplicate



  • Ans: select DISTINCT CITY from STATION where LEFT(CITY,1) not in ('a','e','i','o','u','A','E','O','I','U');




    Answer:Select distinct CITY from STATION where right(CITY , 1) not in ('a','e','i','o','u','A','E','I','O','U');


    Answer: Select distinct CITY from STATION where left(CITY , 1) not in ('a','e','i','o','u','A','E','I','O','U') or right(CITY , 1) not in ('a','e','i','o','u','A','E','I','O','U');


    Answer : Select distinct CITY from STATION where left(CITY , 1) not in ('a','e','i','o','u','A','E','I','O','U') and right(CITY , 1) not in ('a','e','i','o','u','A','E','I','O','U');


    Answer:    SELECT Name FROM STUDENTS WHERE Marks > 75 ORDER BY RIGHT(Name, 3), ID ASC;



    Answer:  Select name from Employee order by name asc;













    Comments

    Popular posts from this blog

    session 19 Git Repository

      🔁 Steps to Create a Branch in Databricks, Pull from Git, and Merge into a Collaborative Branch Create a New Branch in Databricks: Go to the Repos tab in your workspace. Navigate to the Git-linked repo. Click the Git icon (or three dots ⋮) and choose "Create Branch." Give your branch a name (e.g., feature-xyz ) and confirm. Pull the Latest Changes from Git: With your new branch selected, click the Git icon again. Select “Pull” to bring the latest updates from the remote repository into your local Databricks environment. Make Changes & Commit: Edit notebooks or files as needed in your branch. Use the "Commit & Push" option to push changes to the remote repo. Merge into the Collaborative Branch: Switch to the collaborative branch (e.g., dev or main ) in Git or from the Databricks UI. Click "Pull & Merge" . Choose the branch you want to merge into the collaborative branch. Review the c...

    Session 18 monitering and logging - Azure Monitor , Log analytics , and job notification

     After developing the code, we deploy it into the production environment. To monitor and logging the jobs run in the real time systems in azure  we have scheduled the jobs under the workflow , we haven't created any monitoring or any matrics . After a few times, the job failed, but we don't know because we haven't set up any monitoring, and every time we can't navigate to workspace-> workflows, under runs to see to check whether the job has been successfully running or not and in real time there will be nearly 100 jobs or more jobs to run  In real time, the production support team will monitor the process. Under the workflow, there is an option called Job notification. After setting the job notification, we can set a notification to email . if we click the date and time its takes us to the notebook which is scheduled there we can able to see the error where it happens . order to see more details, we need to under Spark tab, where we have the option to view logs ( tha...

    Transformation - section 6 - data flow

      Feature from Slide Explanation ✅ Code-free data transformations Data Flows in ADF allow you to build transformations using a drag-and-drop visual interface , with no need for writing Spark or SQL code. ✅ Executed on Data Factory-managed Databricks Spark clusters Internally, ADF uses Azure Integration Runtimes backed by Apache Spark clusters , managed by ADF, not Databricks itself . While it's similar in concept, this is not the same as your own Databricks workspace . ✅ Benefits from ADF scheduling and monitoring Data Flows are fully integrated into ADF pipelines, so you get all the orchestration, parameterization, logging, and alerting features of ADF natively. ⚠️ Important Clarification Although it says "executed on Data Factory managed Databricks Spark clusters," this does not mean you're using your own Azure Databricks workspace . Rather: ADF Data Flows run on ADF-managed Spark clusters. Azure Databricks notebooks (which you trigger via an "Exe...