sql >> Database >  >> RDS >> Database

Top 115 SQL-interviewvragen die u in 2022 moet voorbereiden

RDBMS is een van de meest gebruikte databases tot nu toe, en daarom SQL-vaardigheden zijn onmisbaar in de meeste functies. In dit artikel over SQL-interviewvragen zal ik u kennis laten maken met de meest gestelde vragen over SQL (Structured Query Language). Dit artikel is de perfecte gids voor u om alle concepten met betrekking tot SQL, Oracle, MS SQL Server en MySQL-database te leren. Ons artikel met de 65 belangrijkste vragen over SQL-interviews is de one-stop-resource van waaruit u uw interviewvoorbereiding een boost kunt geven.

Wil je jezelf bijscholen om vooruit te komen in je carrière? Bekijk de Top Trending Technologies .

Laten we aan de slag gaan!

SQL-sollicitatievragen

  1. Wat is het verschil tussen SQL en MySQL?
  2. Wat zijn de verschillende subsets van SQL?
  3. Wat bedoel je met DBMS? Wat zijn de verschillende soorten?
  4. Wat bedoel je met tabel en veld in SQL?
  5. Wat zijn joins in SQL?
  6. Wat is het verschil tussen het gegevenstype CHAR en VARCHAR2 in SQL?
  7. Wat is de primaire sleutel?
  8. Wat zijn beperkingen?
  9. Wat is het verschil tussen DELETE- en TRUNCATE-instructies?
  10. Wat is een unieke sleutel?

Q1. Wat is het verschil tussen SQL en MySQL?

SQL versus MySQL

SQL MySQL
SQL is een standaardtaal die staat voor Structured Query Language gebaseerd op de Engelse taal MySQL is een databasebeheersysteem.
SQL is de kern van de relationele database die wordt gebruikt voor toegang tot en beheer van de database

MySQL is een RDMS (Relational Database Management System) zoals SQL Server, Informix enz.

Q2. Wat zijn de verschillende subsets van SQL?

  • Data Definition Language (DDL) - Hiermee kunt u verschillende bewerkingen op de database uitvoeren, zoals CREATE, ALTER en DELETE-objecten.
  • Taal voor gegevensmanipulatie (DML) - Hiermee kunt u gegevens openen en manipuleren. Het helpt u bij het invoegen, bijwerken, verwijderen en ophalen van gegevens uit de database.
  • Data Control Language (DCL) – Hiermee kunt u de toegang tot de database beheren. Voorbeeld – Toegangsrechten verlenen, intrekken.

Q3. Wat bedoel je met DBMS? Wat zijn de verschillende soorten?

Een Databasebeheersysteem (DBMS ) is een softwaretoepassing die samenwerkt met de gebruiker, toepassingen en de database zelf om gegevens vast te leggen en te analyseren. Een database is een gestructureerde verzameling van gegevens.

Een DBMS stelt een gebruiker in staat om te communiceren met de database. De gegevens die in de database zijn opgeslagen, kunnen worden gewijzigd, opgehaald en verwijderd en kunnen van elk type zijn, zoals strings, cijfers, afbeeldingen, enz.

Er zijn twee soorten DBMS:

  • Relationeel databasebeheersysteem :De gegevens worden opgeslagen in relaties (tabellen). Voorbeeld – MySQL.
  • Niet-relationeel databasebeheersysteem :Er is geen concept van relaties, tupels en attributen. Voorbeeld – MongoDB

Laten we naar de volgende vraag in deze SQL-interviewvragen gaan.

Q4. Wat is RDBMS? Wat is het verschil met DBMS?

Een relationeel databasebeheersysteem (RDBMS) is een reeks toepassingen en functies waarmee IT-professionals en anderen relationele databases kunnen ontwikkelen, bewerken, beheren en ermee kunnen werken. De meeste commerciële relationele databasebeheersystemen gebruiken Structured Query Language (SQL) om toegang te krijgen tot de database, die is opgeslagen in de vorm van tabellen.
Het RDBMS is het meest gebruikte databasesysteem in bedrijven over de hele wereld. Het biedt een stabiele manier om enorme hoeveelheden gegevens op te slaan en op te halen.

Databases bevatten over het algemeen gegevensverzamelingen die in andere toepassingen kunnen worden geopend en gebruikt. De ontwikkeling, het beheer en het gebruik van databaseplatforms worden allemaal ondersteund door een databasebeheersysteem.

Een relationeel databasebeheersysteem (RDBMS) is een type databasebeheersysteem (DBMS) dat gegevens opslaat in een op rijen gebaseerde tabelstructuur die gerelateerde gegevenscomponenten met elkaar verbindt. Een RDBMS bevat functies die de veiligheid, nauwkeurigheid, integriteit en consistentie van de gegevens waarborgen. Dit is niet hetzelfde als de bestandsopslag die wordt gebruikt door een databasebeheersysteem.

Hier volgen enkele verdere verschillen tussen databasebeheersystemen en relationele databasebeheersystemen:

Het aantal gebruikers dat het systeem mag gebruiken
Een DBMS kan slechts één gebruiker tegelijk aan, terwijl een RDBMS meerdere gebruikers aankan.
Hardware- en softwarespecificaties
In vergelijking met een RDBMS vereist een DBMS minder software en hardware.
Hoeveelheid informatie
RDBMS'en kunnen elke hoeveelheid gegevens aan, van klein tot enorm, terwijl DBMS'en beperkt zijn tot kleine hoeveelheden.
De structuur van de database
Gegevens worden opgeslagen in een hiërarchische indeling in een DBMS, terwijl een RDBMS een tabel gebruikt met koppen die dienen als kolomnamen en rijen die de bijbehorende waarden bevatten.
Implementatie van het ACID-principe
Het concept van atomiciteit, consistentie, isolatie en duurzaamheid (ACID) wordt door DBMS'en niet gebruikt voor gegevensopslag. RDBMS'en daarentegen gebruiken het ACID-model om hun gegevens te ordenen en consistentie te verzekeren.
Databases die worden verspreid
Een DBMS biedt geen volledige ondersteuning voor gedistribueerde databases, terwijl een RDBMS dat wel zal doen.
Programma's die worden beheerd
Een DBMS richt zich op het bijhouden van databases die aanwezig zijn binnen het computernetwerk en de harde schijven van het systeem, terwijl een RDBMS helpt bij het beheren van relaties tussen de daarin opgenomen gegevenstabellen.
Normalisering van databases wordt ondersteund
Een RDBMS kan worden genormaliseerd, maar een DBMS kan niet worden genormaliseerd.

Q5. Wat is een Self-Join?

Een self-join is een type join dat kan worden gebruikt om twee tabellen met elkaar te verbinden. Als gevolg hiervan is het een unaire relatie. Elke rij van de tabel is aan zichzelf gekoppeld en alle andere rijen van dezelfde tabel in een self-join. Als gevolg hiervan wordt een self-join meestal gebruikt om rijen uit dezelfde databasetabel te combineren en te vergelijken.

Q6. Wat is de SELECT-instructie?

Een SELECT-opdracht haalt nul of meer rijen op uit een of meer databasetabellen of -views. De meest voorkomende DML-opdracht (Data Manipulation Language) is SELECT in de meeste toepassingen. SELECT-query's definiëren een resultatenset, maar niet hoe deze moet worden berekend, omdat SQL een declaratieve programmeertaal is.

Q7. Wat zijn enkele veelvoorkomende clausules die worden gebruikt met de SELECT-query in SQL?

Hier volgen enkele veelvoorkomende SQL-clausules die worden gebruikt in combinatie met een SELECT-query:

WAAR clausule:In SQL wordt de WHERE-clausule gebruikt om records te filteren die vereist zijn, afhankelijk van bepaalde criteria.
BESTEL DOOR clausule:De ORDER BY-clausule in SQL wordt gebruikt om gegevens in oplopende (ASC) of aflopende (DESC) volgorde te sorteren, afhankelijk van opgegeven veld(en) (DESC).
GROEPEREN OP clausule:GROUP BY-clausule in SQL wordt gebruikt om items met identieke gegevens te groeperen en kan worden gebruikt met aggregatiemethoden om samengevatte databaseresultaten te verkrijgen.
HEBBEN clausule in SQL wordt gebruikt om records te filteren in combinatie met de GROUP BY-clausule. Het is anders dan WHERE, omdat de WHERE-component geaggregeerde records niet kan filteren.

Q8. Wat zijn UNION-, MINUS- en INTERSECT-opdrachten?

De UNION-operator wordt gebruikt om de resultaten van twee tabellen te combineren en tegelijkertijd dubbele vermeldingen te verwijderen.
De operator MINUS wordt gebruikt om rijen van de eerste query te retourneren, maar niet van de tweede query.
De INTERSECT-operator wordt gebruikt om de resultaten van beide query's in één rij te combineren.
Voordat een van de bovenstaande SQL-instructies wordt uitgevoerd, moet aan bepaalde vereisten worden voldaan:
Binnen de clausule moet elke SELECT-query hetzelfde aantal kolommen hebben.
Ook de datatypes in de kolommen moeten vergelijkbaar zijn.
In elke SELECT-instructie moeten de kolommen in dezelfde volgorde staan.

Q9. Wat is cursor? Hoe gebruik je een cursor?

Na elke variabele declaratie, DECLARE een cursor. Een SELECT-instructie moet altijd worden gekoppeld aan de cursordefinitie.

Beweeg de cursor erover om de resultatenset te starten. Voordat u rijen uit de resultatenset haalt, moet het OPEN-statement worden uitgevoerd.

Gebruik de opdracht FETCH om op te halen en naar de volgende rij in de resultatenset te gaan.

Gebruik de opdracht CLOSE om de cursor uit te schakelen.

Gebruik ten slotte het DEALLOCATE-commando om de cursordefinitie te verwijderen en de daarmee verbonden bronnen vrij te maken.

Q10. Maak een lijst van de verschillende soorten relaties in SQL.

Er zijn verschillende soorten relaties in de database:

Een-op-een – Dit is een verbinding tussen twee tabellen waarbij elk record in de ene tabel overeenkomt met het maximum van het ene record in de andere.

Een-op-veel en Veel-op-een – Dit is de meest voorkomende verbinding, waarbij een record in de ene tabel is gekoppeld aan meerdere records in een andere.

Veel-op-veel – Dit wordt gebruikt bij het definiëren van een relatie die meerdere instanties aan elke kant vereist.

Zelfverwijzende relaties – Wanneer een tabel een verbinding met zichzelf moet declareren, is dit de methode die moet worden gebruikt.

Q12. Wat is OLTP?

Met OLTP, of online transactieverwerking, kunnen grote groepen mensen enorme hoeveelheden databasetransacties in realtime uitvoeren, meestal via internet. Een databasetransactie vindt plaats wanneer gegevens in een database worden gewijzigd, ingevoegd, verwijderd of opgevraagd.

Q13. Wat zijn de verschillen tussen OLTP en OLAP?

OLTP staat voor online transactieverwerking, terwijl OLAP staat voor online analytische verwerking. OLTP is een online databasemodificatiesysteem, terwijl OLAP een online databasequery-responssysteem is.

Q14. Hoe maak je lege tabellen met dezelfde structuur als een andere tabel?

Om lege tabellen te maken:
Door de INTO-operator te gebruiken om de records van een tabel in een nieuwe tabel op te halen en tegelijkertijd een WHERE-clausule in te stellen op false voor alle items, is het mogelijk om lege tabellen met dezelfde structuur te maken. Als gevolg hiervan maakt SQL een nieuwe tabel met een dubbele structuur om de opgehaalde items te accepteren, maar er wordt niets opgeslagen in de nieuwe tabel sinds de WHERE-component actief is.

Q15. Wat is PostgreSQL?

In 1986 creëerde een team onder leiding van Computer Science Professor Michael Stonebraker PostgreSQL onder de naam Postgres. Het is gemaakt om ontwikkelaars te helpen bij de ontwikkeling van applicaties op bedrijfsniveau door de gegevensintegriteit en fouttolerantie in systemen te waarborgen. PostgreSQL is een veelzijdig, veerkrachtig, open-source, object-relationeel databasebeheersysteem dat variabele workloads en gelijktijdige gebruikers ondersteunt. De internationale ontwikkelaarsgemeenschap heeft het voortdurend ondersteund. PostgreSQL heeft veel aantrekkingskracht gekregen bij ontwikkelaars vanwege de fouttolerante eigenschappen.
Het is een zeer betrouwbaar databasebeheersysteem, waaraan meer dan twee decennia aan gemeenschapswerk te danken is voor de hoge mate van veerkracht, integriteit en nauwkeurigheid. Veel online, mobiele, geospatiale en analysetoepassingen gebruiken PostgreSQL als hun primaire gegevensopslag of datawarehouse.

Q16. Wat zijn SQL-opmerkingen?

SQL-opmerkingen worden gebruikt om delen van SQL-instructies te verduidelijken en om te voorkomen dat SQL-instructies worden uitgevoerd. Opmerkingen zijn vrij belangrijk in veel programmeertalen. De opmerkingen worden niet ondersteund door een Microsoft Access-database. Als gevolg hiervan wordt de Microsoft Access-database gebruikt in de voorbeelden in Mozilla Firefox en Microsoft Edge.
Enkele regel opmerkingen:Het begint met twee opeenvolgende koppeltekens (–).
Opmerkingen met meerdere regels:het begint met /* en eindigt met */.

Q17. Wat is het gebruik van de NVL()-functie?

U kunt de NVL-functie gebruiken om null-waarden te vervangen door een standaardwaarde. De functie retourneert de waarde van de tweede parameter als de eerste parameter null is. Als de eerste parameter iets anders is dan null, wordt deze alleen gelaten.

Deze functie wordt gebruikt in Oracle, niet in SQL en MySQL. In plaats van NVL() functie, MySQL hebben IFNULL() en SQL Server hebben ISNULL() functie.

Laten we naar de volgende vraag in deze SQL-interviewvragen gaan.

Q18. Karaktermanipulatiefuncties uitleggen? Legt de verschillende typen in SQL uit.

Wijzig, extraheer en bewerk de tekenreeks met behulp van routines voor het manipuleren van tekens. De functie zal zijn actie uitvoeren op de invoerreeksen en het resultaat retourneren wanneer een of meer tekens en woorden erin worden ingevoerd.

De karaktermanipulatiefuncties in SQL zijn als volgt:

A) CONCAT (twee of meer waarden samenvoegen):Deze functie wordt gebruikt om twee of meer waarden samen te voegen. De tweede string wordt altijd toegevoegd aan het einde van de eerste string.

B) SUBSTR:Deze functie retourneert een segment van een string van een bepaald startpunt naar een bepaald eindpunt.

C) LENGTH:Deze functie retourneert de lengte van de string in numerieke vorm, inclusief spaties.

D) INSTR:Deze functie berekent de precieze numerieke locatie van een teken of woord in een string.

E) LPAD:voor rechts uitgelijnde waarden retourneert het de opvulling van de linker tekenwaarde.

F) RPAD:voor een links uitgelijnde waarde retourneert het de opvulling van de tekenwaarde aan de rechterkant.

G) TRIM:Deze functie verwijdert alle gedefinieerde karakters aan het begin, einde of beide uiteinden van een string. Het verminderde ook de hoeveelheid verspilde ruimte.

H) REPLACE:Deze functie vervangt alle instanties van een woord of een sectie van een string (substring) door de andere gespecificeerde stringwaarde.

Q19. Schrijf de SQL-query om het derde maximumsalaris van een werknemer te krijgen uit een tabel met de naam werknemers.

Werknemerstabel

naam werknemer salaris
Een 24000
C 34000
D 55000
E 75000
F 21000
G 40000
H 50000

KIES * VAN(

SELECT naam werknemer, salaris, DENSE_RANK()

OVER (ORDER OP salaris DESC)r VAN werknemer)

WAAR r=&n;

Om de 3e hoogste salarisset te vinden n =3

Q20. Wat is het verschil tussen de functies RANK() en DENSE_RANK()?

De functie RANK() in de resultatenset definieert de rangorde van elke rij binnen uw geordende partitie. Als beide rijen dezelfde rangorde hebben, is het volgende nummer in de rangorde de vorige rang plus een aantal duplicaten. Als we bijvoorbeeld drie records op rang 4 hebben, is het volgende aangegeven niveau 7.

De functie DENSE_RANK() wijst een afzonderlijke rangorde toe aan elke rij binnen een partitie op basis van de opgegeven kolomwaarde, zonder gaten. Het geeft altijd een rangorde aan. Deze functie wijst dezelfde rangorde toe aan de twee rijen als ze dezelfde rangorde hebben, waarbij de volgende rangorde het volgende opeenvolgende nummer is. Als we bijvoorbeeld drie records op rang 4 hebben, is het volgende aangegeven niveau 5.

Q21. Wat zijn tabellen en velden?

Een tabel is een verzameling gegevenscomponenten die zijn georganiseerd in rijen en kolommen in een relationele database. Een tabel kan ook worden gezien als een nuttige weergave van relaties. De meest elementaire vorm van gegevensopslag is de tabel. Hieronder ziet u een voorbeeld van een werknemerstabel.

ID Naam Afdeling Salaris
1 Rahul Verkoop 24000
2 Rohini Marketing 34000
3 Shylesh Verkoop 24000
4 Tarun Analyse 30000

Een record of rij is een enkel item in een tabel. In een tabel vertegenwoordigt een record een verzameling verbonden gegevens. De tabel Werknemer heeft bijvoorbeeld vier records.

Een tabel bestaat uit een groot aantal records (rijen), die elk kunnen worden opgesplitst in kleinere eenheden die Velden (kolommen) worden genoemd. ID, Naam, Afdeling en Salaris zijn de vier velden in de bovenstaande tabel Werknemers.

Q22. Wat is een UNIEKE beperking?

De UNIQUE Constraint voorkomt dat identieke waarden in een kolom in twee records voorkomen. De UNIQUE-beperking garandeert dat elke waarde in een kolom uniek is.

Q23. Wat is een Self-Join?

Een self-join is een type join dat kan worden gebruikt om twee tabellen met elkaar te verbinden. Als gevolg hiervan is het een unaire relatie. Elke rij van de tabel is aan zichzelf gekoppeld en alle andere rijen van dezelfde tabel in een self-join. Als gevolg hiervan wordt een self-join meestal gebruikt om rijen uit dezelfde databasetabel te combineren en te vergelijken.

Q24. Wat is de SELECT-instructie?

Een SELECT-opdracht haalt nul of meer rijen op uit een of meer databasetabellen of -views. De meest voorkomende DML-opdracht (Data Manipulation Language) is SELECT in de meeste toepassingen. SELECT-query's definiëren een resultatenset, maar niet hoe deze moet worden berekend, omdat SQL een declaratieve programmeertaal is.

Q25. Wat zijn enkele veelvoorkomende clausules die worden gebruikt met de SELECT-query in SQL?

Hier volgen enkele veelvoorkomende SQL-clausules die worden gebruikt in combinatie met een SELECT-query:

WHERE-component:In SQL wordt de WHERE-component gebruikt om records te filteren die vereist zijn, afhankelijk van bepaalde criteria.
ORDER BY-component:De ORDER BY-component in SQL wordt gebruikt om gegevens in oplopende (ASC) of aflopende (DESC) volgorde te sorteren, afhankelijk van opgegeven veld(en) (DESC).
GROUP BY-clausule:GROUP BY-clausule in SQL wordt gebruikt om items met identieke gegevens te groeperen en kan worden gebruikt met aggregatiemethoden om samengevatte databaseresultaten te verkrijgen.
De HAVING-component in SQL wordt gebruikt om records te filteren in combinatie met de GROUP BY-component. Het is anders dan WHERE, omdat de WHERE-component geaggregeerde records niet kan filteren.

Q26. Wat zijn UNION-, MINUS- en INTERSECT-opdrachten?

De UNION-operator wordt gebruikt om de resultaten van twee tabellen te combineren en tegelijkertijd dubbele vermeldingen te verwijderen.

De operator MINUS wordt gebruikt om rijen van de eerste query te retourneren, maar niet van de tweede query.

De INTERSECT-operator wordt gebruikt om de resultaten van beide query's in één rij te combineren.
Voordat een van de bovenstaande SQL-instructies wordt uitgevoerd, moet aan bepaalde vereisten worden voldaan –

Binnen de clausule moet elke SELECT-query hetzelfde aantal kolommen hebben.

De gegevenstypen in de kolommen moeten ook vergelijkbaar zijn.

In elke SELECT-instructie moeten de kolommen in dezelfde volgorde staan.

Laten we naar de volgende vraag in deze SQL-interviewvragen gaan.

Q27. Wat is cursor? Hoe gebruik je een cursor?

Na elke variabele declaratie, DECLARE een cursor. Een SELECT-instructie moet altijd worden gekoppeld aan de cursordefinitie.

Beweeg de cursor erover om de resultatenset te starten. Voordat u rijen uit de resultatenset haalt, moet het OPEN-statement worden uitgevoerd.

Gebruik de opdracht FETCH om op te halen en naar de volgende rij in de resultatenset te gaan.

Gebruik de opdracht CLOSE om de cursor uit te schakelen.

Gebruik ten slotte het DEALLOCATE-commando om de cursordefinitie te verwijderen en de daarmee verbonden bronnen vrij te maken.

Q28. Maak een lijst van de verschillende soorten relaties in SQL.

Er zijn verschillende soorten relaties in de database:
Eén-op-één – Dit is een verbinding tussen twee tabellen waarbij elk record in de ene tabel overeenkomt met het maximum van één record in de andere.
Eén-op-veel en Veel-op-één – Dit is de meest voorkomende verbinding, waarbij een record in de ene tabel is gekoppeld aan meerdere records in een andere.
Veel-op-veel - Dit wordt gebruikt bij het definiëren van een relatie waarvoor aan elke kant meerdere instanties nodig zijn.
Zelfverwijzende relaties - Wanneer een tabel een verband met zichzelf moet verklaren, is dit de methode die moet worden gebruikt.

Q29. Wat is een SQL-voorbeeld?

SQL is een databasequerytaal waarmee u gegevens uit databases kunt bewerken, verwijderen en opvragen. De volgende instructies zijn enkele voorbeelden van SQL-instructies:

  • SELECTEER
  • INSERT
  • UPDATE
  • VERWIJDEREN
  • DATABASE MAKEN
  • DATABASE WIJZIGEN

Q30. Wat zijn basisvaardigheden voor SQL?

SQL-vaardigheden helpen gegevensanalisten bij het maken, onderhouden en ophalen van gegevens uit relationele databases, die gegevens in kolommen en rijen verdelen. Het stelt gebruikers ook in staat om efficiënt gegevens op te halen, bij te werken, te manipuleren, in te voegen en te wijzigen.

De meest fundamentele vaardigheden waarover een SQL-expert moet beschikken zijn:

  1. Databasebeheer
  2. Een database structureren
  3. SQL-clausules en instructies maken
  4. SQL-systeemvaardigheden zoals MYSQL, PostgreSQL
  5. PHP-expertise is nuttig.
  6. SQL-gegevens analyseren
  7. WAMP gebruiken met SQL om een ​​database te maken
  8. OLAP-vaardigheden

Q31. Wat is een schema in SQL Server?

Een schema is een visuele weergave van de database die logisch is. Het bouwt en specificeert de relaties tussen de talrijke entiteiten van de database. Het verwijst naar de verschillende soorten beperkingen die op een database kunnen worden toegepast. Het beschrijft ook de verschillende soorten gegevens. Het kan ook worden gebruikt op tabellen en weergaven.

Schema's zijn er in verschillende soorten en maten. Sterrenschema en Sneeuwvlokschema zijn twee van de meest populaire. De entiteiten in een sterschema worden weergegeven in een stervorm, terwijl die in een sneeuwvlokschema worden weergegeven in een sneeuwvlokvorm.
Elke database-architectuur is gebaseerd op schema's.


Q32. Hoe maak je een tijdelijke tabel in SQL Server?

Tijdelijke tabellen worden aangemaakt in TempDB en worden automatisch gewist nadat de laatste verbinding is verbroken. We kunnen tijdelijke tabellen gebruiken om tussentijdse resultaten op te slaan en te verwerken. Wanneer we tijdelijke gegevens moeten opslaan, zijn tijdelijke tabellen handig.

Het volgende is de syntaxis voor het maken van een tijdelijke tabel:

MAAK TABEL #Employee (id INT, naam VARCHAR(25))
INVOEREN IN #Employee VALUES (01, 'Ashish'), (02, 'Atul')

Laten we naar de volgende vraag in deze SQL-interviewvragen gaan.


Q33. Hoe installeer ik SQL Server in Windows 11?

Installeer SQL Server Management Studio in Windows 11

Stap 1: Klik op SSMS, waarmee u naar de pagina SQL Server Management Studio gaat.

Stap 2: Klik bovendien op de link SQL Server Management Studio en tik op Bestand opslaan.

Stap 3: Sla dit bestand op uw lokale schijf op en ga naar de map.

Stap 4: Het instellingenvenster verschijnt en hier kunt u de locatie kiezen waar u het bestand wilt opslaan.
Stap 5: Klik op Installeren.
Stap 6: Sluit het venster nadat de installatie is voltooid.
Stap 7: Ga verder terug naar je Startmenu en zoek naar SQL server management studio.

Stap 8: Dubbelklik er bovendien op en de inlogpagina zal verschijnen zodra deze verschijnt.

Stap 9: U zou uw servernaam moeten kunnen zien. Als dat echter niet zichtbaar is, klikt u op de vervolgkeuzepijl op de server en tikt u op Bladeren.

Stap 10: Kies uw SQL-server en klik op Verbinden.

Daarna zal de SQL-server verbinding maken en zal Windows 11 goed werken.

Q34. Wat is het geval in SQL Server?

De CASE-instructie wordt gebruikt om logica te construeren waarin de waarde van één kolom wordt bepaald door de waarden van andere kolommen.

Ten minste één set WHEN- en THEN-opdrachten vormt de SQL Server CASE-instructie. De te testen voorwaarde wordt gespecificeerd door de WHEN-instructie. Als de WHEN-voorwaarde TRUE retourneert, legt de THEN-zin uit wat u moet doen.

Als geen van de WHEN-voorwaarden waar retourneert, wordt de instructie ELSE uitgevoerd. Het sleutelwoord END sluit de CASE-instructie af.

CASE
WHEN condition1 THEN result1
WHEN condition2 THEN result2
WHEN conditionN THEN resultN
ELSE result
END;

Q35. NoSQL versus SQL

Samengevat zijn de vijf belangrijkste verschillen tussen SQL en NoSQL:

Relationele databases zijn SQL, terwijl niet-relationele databases NoSQL zijn.

SQL-databases hebben een gespecificeerd schema en maken gebruik van gestructureerde querytaal. Voor ongestructureerde gegevens gebruiken NoSQL-databases dynamische schema's.

SQL-databases schalen verticaal, maar NoSQL-databases schalen horizontaal.

NoSQL-databases zijn document-, sleutelwaarde-, grafiek- of brede kolomarchieven, terwijl SQL-databases op tabellen zijn gebaseerd.

SQL-databases blinken uit in transacties met meerdere rijen, terwijl NoSQL uitblinkt in ongestructureerde gegevens zoals documenten en JSON.

Q36. Wat is het verschil tussen NOW() en CURRENT_DATE()?
NOW() retourneert een constante tijd die de tijd aangeeft waarop de instructie begon te worden uitgevoerd. (Binnen een opgeslagen functie of trigger retourneert NOW() het tijdstip waarop de functie of triggering-instructie begon uit te voeren.
Het simpele verschil tussen NOW() en CURRENT_DATE() is dat NOW() de huidige datum en tijd ophaalt, beide in het formaat 'YYYY-MM_DD HH:MM:SS', terwijl CURRENT_DATE() de datum van de huidige dag 'YYYY' zal ophalen -MM_DD'.

Laten we naar de volgende vraag in deze SQL-interviewvragen gaan.

Q37. Wat is BLOB en TEXT in MySQL?

BLOB staat voor Binary Huge Objects en kan worden gebruikt om binaire gegevens op te slaan, terwijl TEXT kan worden gebruikt om een ​​groot aantal strings op te slaan. BLOB kan worden gebruikt om binaire gegevens op te slaan, waaronder afbeeldingen, films, audio en toepassingen.
BLOB-waarden werken op dezelfde manier als bytestrings en ze missen een tekenset. Als gevolg hiervan zijn de numerieke waarden van bytes volledig afhankelijk van vergelijking en sortering.
TEXT-waarden gedragen zich op dezelfde manier als een tekenreeks of een niet-binaire reeks. De vergelijking/sortering van TEKST is volledig afhankelijk van de verzameling tekensets.

Q38. Hoe dubbele rijen in SQL verwijderen?

Als de SQL-tabel dubbele rijen heeft, moeten de dubbele rijen worden verwijderd.

Laten we aannemen dat de volgende tabel onze dataset is:

ID Naam Leeftijd
1 Een 21
2 B 23
2 B 23
4 D 22
5 E 25
6 G 26
5 E 25

De volgende SQL-query verwijdert de dubbele ID's uit de tabel:

VERWIJDER UIT tabel WHERE ID IN (
KIES
ID, AANTAL(ID)
VAN tafel
GROEP OP ID
HEBBEN
AANTAL (ID)> 1);

Q39. Hoe maak je een opgeslagen procedure aan met SQL Server?

Een opgeslagen procedure is een stukje voorbereide SQL-code die u kunt opslaan en steeds opnieuw kunt gebruiken.
Dus als u een SQL-query hebt die u vaak maakt, sla deze dan op als een opgeslagen procedure en roep deze vervolgens aan om deze uit te voeren.
U kunt ook parameters aan een opgeslagen procedure toevoegen, zodat deze kan handelen op basis van de waarde(n) van de gegeven parameter(s).

Opgeslagen proceduresyntaxis

PROCEDURE MAKEN procedurenaam

AS

sql_statement

GA;

Een opgeslagen procedure uitvoeren

EXEC procedure_name;


Q40. Wat is Database Black Box-testen?

Black Box Testing is een benadering voor het testen van software waarbij de functies van softwaretoepassingen worden getest zonder de interne codestructuur, implementatiedetails of interne routes te kennen. Black Box Testing is een type softwaretest dat zich richt op de invoer en uitvoer van softwaretoepassingen en volledig wordt aangedreven door softwarevereisten en -specificaties. Gedragstesten is een andere naam ervoor.


Q41. Wat zijn de verschillende soorten SQL-sandbox?

SQL Sandbox is een beveiligde omgeving binnen SQL Server waar niet-vertrouwde programma's kunnen worden uitgevoerd. Er zijn drie verschillende soorten SQL-sandboxen:

Safe Access Sandbox:in deze omgeving kan een gebruiker SQL-activiteiten uitvoeren, zoals het bouwen van opgeslagen procedures, triggers, enzovoort, maar ze kunnen geen toegang krijgen tot het geheugen of bestanden maken.

Sandbox voor externe toegang:gebruikers hebben toegang tot bestanden zonder de mogelijkheid om de geheugentoewijzing te wijzigen.

Sandbox voor onveilige toegang:deze bevat onbetrouwbare code waarmee een gebruiker toegang kan krijgen tot het geheugen.

Laten we naar de volgende vraag in deze SQL-interviewvragen gaan.

Q42. Waar wordt de MyISAM-tabel opgeslagen?

Vóór de introductie van MySQL 5.5 in december 2009 was MyISAM de standaard opslagengine voor versies van het relationele databasebeheersysteem van MySQL. Het is gebaseerd op de oudere ISAM-code, maar heeft veel extra functies. Elke MyISAM-tabel is opgesplitst in drie bestanden op schijf (als deze niet is gepartitioneerd). De bestandsnamen beginnen met de tabelnaam en eindigen met een extensie die het bestandstype aangeeft. De tabeldefinitie wordt opgeslagen in een.frm-bestand, maar dit bestand maakt geen deel uit van de MyISAM-engine; in plaats daarvan maakt het deel uit van de server. Het achtervoegsel van het gegevensbestand is.MYD (MYData). De extensie van het indexbestand is.MYI (MYIndex). Als u uw indexbestand kwijtraakt, kunt u het altijd herstellen door indexen opnieuw te maken.

Q43. Hoe vind je het op één na hoogste salaris in SQL?
De meest typische vraag in een sollicitatiegesprek is om het N-de hoogste salaris in een tabel te vinden. Dit werk kan worden bereikt met behulp van de functie dichte rank().
Werknemerstabel

naam werknemer salaris
Een 24000
C 34000
D 55000
E 75000
F 21000
G 40000
H 50000

KIES * VAN(

SELECT naam werknemer, salaris, DENSE_RANK()

OVER (ORDER OP salaris DESC)r VAN werknemer)

WAAR r=&n;

Om te zoeken naar de 2e hoogste salarisset n =2

Om de 3e hoogste salarisset te vinden n =3 enzovoort.

Q44. Wat bedoel je met tabel en veld in SQL?

Een tabel verwijst naar een verzameling gegevens op een georganiseerde manier in de vorm van rijen en kolommen. Een veld verwijst naar het aantal kolommen in een tabel. Bijvoorbeeld:

Tabel :Studenteninformatie
Veld :Stu Id, Stu Naam, Stu Marks

Q45. Wat zijn joins in SQL?

Een JOIN-clausule wordt gebruikt om rijen uit twee of meer tabellen te combineren, gebaseerd op een gerelateerde kolom ertussen. Het wordt gebruikt om twee tabellen samen te voegen of om daar gegevens op te halen. Er zijn 4 soorten joins, zoals u hieronder kunt zien:

  • Innerlijke join: Inner Join in SQL is het meest voorkomende type join. Het wordt gebruikt om alle rijen van meerdere tabellen te retourneren waarin aan de join-voorwaarde is voldaan.
  • Left Join: Left Join in SQL is used to return all the rows from the left table but only the matching rows from the right table where the join condition is fulfilled.

  • Right Join: Right Join in SQL is used to return all the rows from the right table but only the matching rows from the left table where the join condition is fulfilled.

  • Full Join: Full join returns all the records when there is a match in any of the tables. Therefore, it returns all the rows from the left-hand side table and all the rows from the right-hand side table.

Let’s move to the next question in this SQL Interview Questions.

Q46. What is the difference between CHAR and VARCHAR2 datatype in SQL?

Both Char and Varchar2 are used for characters datatype but varchar2 is used for character strings of variable length whereas Char is used for strings of fixed length. For example, char(10) can only store 10 characters and will not be able to store a string of any other length whereas varchar2(10) can store any length i.e 6,8,2 in this variable.

Q47. What is a Primary key?

  • A Primary key in SQL is a column (or collection of columns) or a set of columns that uniquely identifies each row in the table.
  • Uniquely identifies a single row in the table
  • Null values not allowed

Example- In the Student table, Stu_ID is the primary key.

Q48. What are Constraints?

Constraints in SQL are used to specify the limit on the data type of the table. It can be specified while creating or altering the table statement. The sample of constraints are:

  • NOT NULL
  • CHECK
  • DEFAULT
  • UNIQUE
  • PRIMARY KEY
  • FOREIGN KEY

Q49. What is the difference between DELETE and TRUNCATE statements?

DELETE vs TRUNCATE

DELETE TRUNCATE
Delete command is used to delete a row in a table. Truncate is used to delete all the rows from a table.
You can rollback data after using delete statement. You cannot rollback data.
It is a DML command. It is a DDL command.
It is slower than truncate statement. It is faster.

Q50. What is a Unique key?

  • Uniquely identifies a single row in the table.
  • Multiple values allowed per table.
  • Null values allowed.

Apart from this SQL Interview Questions blog, if you want to get trained from professionals on this technology, you can opt for structured training from edureka!

Q51. What is a Foreign key in SQL?

  • Foreign key maintains referential integrity by enforcing a link between the data in two tables.
  • The foreign key in the child table references the primary key in the parent table.
  • The foreign key constraint prevents actions that would destroy links between the child and parent tables.

Q52. What do you mean by data integrity?

Data Integrity defines the accuracy as well as the consistency of the data stored in a database. It also defines integrity constraints to enforce business rules on the data when it is entered into an application or a database.

Q53. What is the difference between clustered and non-clustered index in SQL?

The differences between the clustered and non clustered index in SQL are :

  1. Clustered index is used for easy retrieval of data from the database and its faster whereas reading from non clustered index is relatively slower.
  2. Clustered index alters the way records are stored in a database as it sorts out rows by the column which is set to be clustered index whereas in a non clustered index, it does not alter the way it was stored but it creates a separate object within a table which points back to the original table rows after searching.
  3. One table can only have one clustered index whereas it can have many non clustered index.

Q54. Write a SQL query to display the current date?

In SQL, there is a built-in function called GetDate() which helps to return the current timestamp/date.

Q55. What do you understand by query optimization?

The phase that identifies a plan for evaluation query which has the least estimated cost is known as query optimization.

The advantages of query optimization are as follows:

  • The output is provided faster
  • A larger number of queries can be executed in less time
  • Reduces time and space complexity

Q56. What do you mean by Denormalization?

Denormalization refers to a technique which is used to access data from higher to lower forms of a database. It helps the database managers to increase the performance of the entire infrastructure as it introduces redundancy into a table. It adds the redundant data into a table by incorporating database queries that combine data from various tables into a single table.

Q57. What are Entities and Relationships?

Entities :A person, place, or thing in the real world about which data can be stored in a database. Tables store data that represents one type of entity. For example – A bank database has a customer table to store customer information. The customer table stores this information as a set of attributes (columns within the table) for each customer.

Relationships :Relation or links between entities that have something to do with each other. For example – The customer name is related to the customer account number and contact information, which might be in the same table. There can also be relationships between separate tables (for example, customer to accounts).

Let’s move to the next question in this SQL Interview Questions.


Q58. What is an Index?

An index refers to a performance tuning method of allowing faster retrieval of records from the table. An index creates an entry for each value and hence it will be faster to retrieve data.

Q59 . Explain different types of index in SQL.

There are three types of index in SQL namely:

Unique Index:

This index does not allow the field to have duplicate values if the column is unique indexed. If a primary key is defined, a unique index can be applied automatically.

Clustered Index:

This index reorders the physical order of the table and searches based on the basis of key values. Each table can only have one clustered index.

Non-Clustered Index:

Non-Clustered Index does not alter the physical order of the table and maintains a logical order of the data. Each table can have many nonclustered indexes.

Q60. What is Normalization and what are the advantages of it?

Normalization in SQL is the process of organizing data to avoid duplication and redundancy. Some of the advantages are:

  • Better Database organization
  • More Tables with smaller rows
  • Efficient data access
  • Greater Flexibility for Queries
  • Quickly find the information
  • Easier to implement Security
  • Allows easy modification
  • Reduction of redundant and duplicate data
  • More Compact Database
  • Ensure Consistent data after modification

Apart from this SQL Interview Questions Blog, if you want to get trained from professionals on this technology, you can opt for structured training from edureka!

Q61. What is the difference between DROP and TRUNCATE commands?

DROP command removes a table and it cannot be rolled back from the database whereas TRUNCATE command removes all the rows from the table.

Q62. Explain different types of Normalization.

There are many successive levels of normalization. These are called normal forms . Each consecutive normal form depends on the previous one.The first three normal forms are usually adequate.

Normal Forms are used in database tables to remove or decrease duplication. The following are the many forms:

First Normal Form:
When every attribute in a relation is a single-valued attribute, it is said to be in first normal form. The first normal form is broken when a relation has a composite or multi-valued property.

Second Normal Form:

A relation is in second normal form if it meets the first normal form’s requirements and does not contain any partial dependencies. In 2NF, a relation has no partial dependence, which means it has no non-prime attribute that is dependent on any suitable subset of any table candidate key. Often, the problem may be solved by setting a single column Primary Key.

Third Normal Form:
If a relation meets the requirements for the second normal form and there is no transitive dependency, it is said to be in the third normal form.

Q63. What is OLTP?

OLTP, or online transactional processing, allows huge groups of people to execute massive amounts of database transactions in real time, usually via the internet. A database transaction occurs when data in a database is changed, inserted, deleted, or queried.

What are the differences between OLTP and OLAP?

OLTP stands for online transaction processing, whereas OLAP stands for online analytical processing. OLTP is an online database modification system, whereas OLAP is an online database query response system.

Q64. How to create empty tables with the same structure as another table?

To create empty tables:

Using the INTO operator to fetch the records of one table into a new table while setting a WHERE clause to false for all entries, it is possible to create empty tables with the same structure. As a result, SQL creates a new table with a duplicate structure to accept the fetched entries, but nothing is stored into the new table since the WHERE clause is active.

Q65. What is PostgreSQL?

In 1986, a team lead by Computer Science Professor Michael Stonebraker created PostgreSQL under the name Postgres. It was created to aid developers in the development of enterprise-level applications by ensuring data integrity and fault tolerance in systems. PostgreSQL is an enterprise-level, versatile, resilient, open-source, object-relational database management system that supports variable workloads and concurrent users. The international developer community has constantly backed it. PostgreSQL has achieved significant appeal among developers because to its fault-tolerant characteristics.
It’s a very reliable database management system, with more than two decades of community work to thank for its high levels of resiliency, integrity, and accuracy. Many online, mobile, geospatial, and analytics applications utilise PostgreSQL as their primary data storage or data warehouse.

Q66. What are SQL comments?

SQL Comments are used to clarify portions of SQL statements and to prevent SQL statements from being executed. Comments are quite important in many programming languages. The comments are not supported by a Microsoft Access database. As a result, the Microsoft Access database is used in the examples in Mozilla Firefox and Microsoft Edge.
Single Line Comments:It starts with two consecutive hyphens (–).
Multi-line Comments:It starts with /* and ends with */.

Let’s move to the next question in this SQL Interview Questions.

Q67. What is the difference between the RANK() and DENSE_RANK() functions?

The RANK() function in the result set defines the rank of each row within your ordered partition. If both rows have the same rank, the next number in the ranking will be the previous rank plus a number of duplicates. If we have three records at rank 4, for example, the next level indicated is 7.

The DENSE_RANK() function assigns a distinct rank to each row within a partition based on the provided column value, with no gaps. It always indicates a ranking in order of precedence. This function will assign the same rank to the two rows if they have the same rank, with the next rank being the next consecutive number. If we have three records at rank 4, for example, the next level indicated is 5.

Q68. What is SQL Injection?

SQL injection is a sort of flaw in website and web app code that allows attackers to take control of back-end processes and access, retrieve, and delete sensitive data stored in databases. In this approach, malicious SQL statements are entered into a database entry field, and the database becomes exposed to an attacker once they are executed. By utilising data-driven apps, this strategy is widely utilised to get access to sensitive data and execute administrative tasks on databases. SQLi attack is another name for it.

The following are some examples of SQL injection:

  • Getting access to secret data in order to change a SQL query to acquire the desired results.
  • UNION attacks are designed to steal data from several database tables.
  • Examine the database to get information about the database’s version and structure

Q69. How many Aggregate functions are available in SQL?

SQL aggregate functions provide information about a database’s data. AVG, for example, returns the average of a database column’s values.

SQL provides seven (7) aggregate functions, which are given below:

AVG():returns the average value from specified columns.
COUNT():returns the number of table rows, including rows with null values.
MAX():returns the largest value among the group.
MIN():returns the smallest value among the group.
SUM():returns the total summed values(non-null) of the specified column.
FIRST():returns the first value of an expression.
LAST():returns the last value of an expression.

Q70. What is the default ordering of data using the ORDER BY clause? How could it be changed?

The ORDER BY clause in MySQL can be used without the ASC or DESC modifiers. The sort order is preset to ASC or ascending order when this attribute is absent from the ORDER BY clause.

Q71. How do we use the DISTINCT statement? What is its use?

The SQL DISTINCT keyword is combined with the SELECT query to remove all duplicate records and return only unique records. There may be times when a table has several duplicate records.
The DISTINCT clause in SQL is used to eliminate duplicates from a SELECT statement’s result set.

Q72. What are the syntax and use of the COALESCE function?

From a succession of expressions, the COALESCE function returns the first non-NULL value. The expressions are evaluated in the order that they are supplied, and the function’s result is the first non-null value. Only if all of the inputs are null does the COALESCE method return NULL.

The syntax of COALESCE function is COALESCE (exp1, exp2, …. expn)

Q73. What is the ACID property in a database?

ACID stands for Atomicity, Consistency, Isolation, Durability. It is used to ensure that the data transactions are processed reliably in a database system.

  • Atomicity: Atomicity refers to the transactions that are completely done or failed where transaction refers to a single logical operation of a data. It means if one part of any transaction fails, the entire transaction fails and the database state is left unchanged.
  • Consistency: Consistency ensures that the data must meet all the validation rules. In simple words, you can say that your transaction never leaves the database without completing its state.
  • Isolation: The main goal of isolation is concurrency control.
  • Durability: Durability means that if a transaction has been committed, it will occur whatever may come in between such as power loss, crash or any sort of error.
Want to upskill yourself to get ahead in your career? Check out this video in this SQL Interview Questions

Top 10 Technologies to Learn in 2022 | Edureka

Q74. What do you mean by “Trigger” in SQL?

Trigger in SQL is are a special type of stored procedures that are defined to execute automatically in place or after data modifications. It allows you to execute a batch of code when an insert, update or any other query is executed against a specific table.

Q75. What are the different operators available in SQL?

There are three operators available in SQL, namely:

  1. Rekenkundige operatoren
  2. Logische operatoren
  3. Vergelijkingsoperatoren

Apart from this SQL Interview Questions blog, if you want to get trained from professionals on this technology, you can opt for structured training from edureka!

Q76. Are NULL values same as that of zero or a blank space?

A NULL value is not at all same as that of zero or a blank space. NULL value represents a value which is unavailable, unknown, assigned or not applicable whereas a zero is a number and blank space is a character.

Q77. What is the difference between cross join and natural join?

The cross join produces the cross product or Cartesian product of two tables whereas the natural join is based on all the columns having the same name and data types in both the tables.

Q78. What is subquery in SQL?

A subquery is a query inside another query where a query is defined to retrieve data or information back from the database. In a subquery, the outer query is called as the main query whereas the inner query is called subquery. Subqueries are always executed first and the result of the subquery is passed on to the main query. It can be nested inside a SELECT, UPDATE or any other query. A subquery can also use any comparison operators such as>,

Q79. What are the different types of a subquery?

There are two types of subquery namely, Correlated and Non-Correlated.

Correlated subquery :These are queries which select the data from a table referenced in the outer query. It is not considered as an independent query as it refers to another table and refers the column in a table.

Non-Correlated subquery :This query is an independent query where the output of subquery is substituted in the main query.

Let’s move to the next question in this SQL Interview Questions.

Q80. List the ways to get the count of records in a table?

To count the number of records in a table in SQL, you can use the below commands:

SELECT * FROM table1

SELECT COUNT(*) FROM table1

SELECT rows FROM sysindexes WHERE id = OBJECT_ID(table1) AND indid < 2

Apart from this SQL Interview Questions Blog, if you want to get trained from professionals on this technology, you can opt for structured training from edureka!

Q81. Write a SQL query to find the names of employees that begin with ‘A’?

To display name of the employees that begin with ‘A’, type in the below command:

SELECT * FROM Table_name WHERE EmpName like 'A%'

Q82. Write a SQL query to get the third-highest salary of an employee from employee_table?

SELECT TOP 1 salary
FROM(
SELECT TOP 3 salary
FROM employee_table
ORDER BY salary DESC) AS emp
ORDER BY salary ASC;

Q83. What is the need for group functions in SQL?

Group functions work on the set of rows and return one result per group. Some of the commonly used group functions are:AVG, COUNT, MAX, MIN, SUM, VARIANCE.

Q84. What is a Relationship and what are they?

Relation or links are between entities that have something to do with each other. Relationships are defined as the connection between the tables in a database. There are various relationships, namely:

  • One to One Relationship.
  • One to Many Relationship.
  • Many to One Relationship.
  • Self-Referencing Relationship.

Q85. How can you insert NULL values in a column while inserting the data?

NULL values in SQL can be inserted in the following ways:

  • Implicitly by omitting column from column list.
  • Explicitly by specifying NULL keyword in the VALUES clause

Q86. What is the main difference between ‘BETWEEN’ and ‘IN’ condition operators?

BETWEEN operator is used to display rows based on a range of values in a row whereas the IN condition operator is used to check for values contained in a specific set of values.

Example of BETWEEN:

SELECT * FROM Students where ROLL_NO BETWEEN 10 AND 50;
Example of IN:
SELECT * FROM students where ROLL_NO IN (8,15,25);

Q87. Why are SQL functions used?

SQL functions are used for the following purposes:

  • To perform some calculations on the data
  • To modify individual data items
  • To manipulate the output
  • To format dates and numbers
  • To convert the data types

Q88. What is the need for MERGE statement?

This statement allows conditional update or insertion of data into a table. It performs an UPDATE if a row exists, or an INSERT if the row does not exist.

Q89. What do you mean by recursive stored procedure?

Recursive stored procedure refers to a stored procedure which calls by itself until it reaches some boundary condition. This recursive function or procedure helps the programmers to use the same set of code n number of times.

Q90. What is CLAUSE in SQL?

SQL clause helps to limit the result set by providing a condition to the query. A clause helps to filter the rows from the entire set of records.

For example – WHERE, HAVING clause.

Apart from this SQL Interview Questions Blog, if you want to get trained from professionals on this technology, you can opt for a structured training from edureka! Click below to know more.

Q91. What is the difference between ‘HAVING’ CLAUSE and a ‘WHERE’ CLAUSE?

HAVING clause can be used only with SELECT statement. It is usually used in a GROUP BY clause and whenever GROUP BY is not used, HAVING behaves like a WHERE clause.
Having Clause is only used with the GROUP BY function in a query whereas WHERE Clause is applied to each row before they are a part of the GROUP BY function in a query.

Q92. List the ways in which Dynamic SQL can be executed?

Following are the ways in which dynamic SQL can be executed:

  • Write a query with parameters.
  • Using EXEC.
  • Using sp_executesql.

Q93. What are the various levels of constraints?

Constraints are the representation of a column to enforce data entity and consistency. There are two levels of a constraint, namely:

  • column level constraint
  • table level constraint

Q94. How can you fetch common records from two tables?

You can fetch common records from two tables using INTERSECT. Bijvoorbeeld:


Select studentID from student. INTERSECT Select StudentID from Exam

Q95. List some case manipulation functions in SQL?

There are three case manipulation functions in SQL, namely:

  • LOWER:This function returns the string in lowercase. It takes a string as an argument and returns it by converting it into lower case. Syntax:
 LOWER(‘string’)
  • UPPER:This function returns the string in uppercase. It takes a string as an argument and returns it by converting it into uppercase. Syntax:
UPPER(‘string’)
  • INITCAP:This function returns the string with the first letter in uppercase and rest of the letters in lowercase. Syntax:
 INITCAP(‘string’)

Apart from this SQL Interview Questions blog, if you want to get trained from professionals on this technology, you can opt for a structured training from edureka! Click below to know more.

Q96. What are the different set operators available in SQL?

Some of the available set operators are – Union, Intersect or Minus operators.

Q97. What is an ALIAS command?

ALIAS command in SQL is the name that can be given to any table or a column. This alias name can be referred in WHERE clause to identify a particular table or a column.

For example-

Select emp.empID, dept.Result from employee emp, department as dept where emp.empID=dept.empID

In the above example, emp refers to alias name for employee table and dept refers to alias name for department table.

Let’s move to the next question in this SQL Interview Questions.

Q98. What are aggregate and scalar functions?

Aggregate functions are used to evaluate mathematical calculation and returns a single value. These calculations are done from the columns in a table. For example- max(),count() are calculated with respect to numeric.

Scalar functions return a single value based on the input value. For example – UCASE(), NOW() are calculated with respect to string.

Let’s move to the next question in this SQL Interview Questions.

Q99. How can you fetch alternate records from a table?

You can fetch alternate records i.e both odd and even row numbers. For example- To display even numbers, use the following command:

Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=0

Now, to display odd numbers:

Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=1

Q100. Name the operator which is used in the query for pattern matching?

LIKE operator is used for pattern matching, and it can be used as -.

  1. % – It matches zero or more characters.

For example- select * from students where studentname like ‘a%’

_ (Underscore) – it matches exactly one character.
For example- select * from student where studentname like ‘abc_’

Apart from this SQL Interview Questions Blog, if you want to get trained from professionals on this technology, you can opt for structured training from edureka!

Q101. How can you select unique records from a table?

You can select unique records from a table by using the DISTINCT keyword.

Select DISTINCT studentID from Student

Using this command, it will print unique student id from the table Student.

Q102. How can you fetch first 5 characters of the string?

There are a lot of ways to fetch characters from a string. Bijvoorbeeld:

Select SUBSTRING(StudentName,1,5) as studentname from student

Q103 . What is the main difference between SQL and PL/SQL?

SQL is a query language that allows you to issue a single query or execute a single insert/update/delete whereas PL/SQL is Oracle’s “Procedural Language” SQL, which allows you to write a full program (loops, variables, etc.) to accomplish multiple operations such as selects/inserts/updates/deletes.

Q104. What is a View?

A view is a virtual table which consists of a subset of data contained in a table. Since views are not present, it takes less space to store. View can have data of one or more tables combined and it depends on the relationship.

Let’s move to the next question in this SQL Interview Questions.

Q105. What are Views used for?

A view refers to a logical snapshot based on a table or another view. It is used for the following reasons:

  • Restricting access to data.
  • Making complex queries simple.
  • Ensuring data independence.
  • Providing different views of same data.

Q106. What is a Stored Procedure?

A Stored Procedure is a function which consists of many SQL statements to access the database system. Several SQL statements are consolidated into a stored procedure and execute them whenever and wherever required which saves time and avoid writing code again and again.

Q107. List some advantages and disadvantages of Stored Procedure?

Advantages :

A Stored Procedure can be used as a modular programming which means create once, store and call for several times whenever it is required. This supports faster execution. It also reduces network traffic and provides better security to the data.

Disadvantage :

The only disadvantage of Stored Procedure is that it can be executed only in the database and utilizes more memory in the database server.

Q108. List all the types of user-defined functions?

There are three types of user-defined functions, namely:

  • Scalar Functions
  • Inline Table-valued functions
  • Multi-statement valued functions

Scalar returns the unit, variant defined the return clause. Other two types of defined functions return table.

Let’s move to the next question in this SQL Interview Questions.

Q109. What do you mean by Collation?

Collation is defined as a set of rules that determine how data can be sorted as well as compared. Character data is sorted using the rules that define the correct character sequence along with options for specifying case-sensitivity, character width etc.

Let’s move to the next question in this SQL Interview Questions.

Q110. What are the different types of Collation Sensitivity?

Following are the different types of collation sensitivity:

  • Case Sensitivity:A and a and B and b.
  • Kana Sensitivity:Japanese Kana characters.
  • Width Sensitivity:Single byte character and double-byte character.
  • Accent Sensitivity.

Apart from this SQL Interview Questions Blog, if you want to get trained from professionals on this technology, you can opt for structured training from edureka!

Q111. What are Local and Global variables?

Local variables:

These variables can be used or exist only inside the function. These variables are not used or referred by any other function.

Global variables:

These variables are the variables which can be accessed throughout the program. Global variables cannot be created whenever that function is called.

Q112. What is Auto Increment in SQL?

Autoincrement keyword allows the user to create a unique number to get generated whenever a new record is inserted into the table.
This keyword is usually required whenever PRIMARY KEY in SQL is used.

AUTO INCREMENT keyword can be used in Oracle and IDENTITY keyword can be used in SQL SERVER.

Q113. What is a Datawarehouse?

Datawarehouse refers to a central repository of data where the data is assembled from multiple sources of information. Those data are consolidated, transformed and made available for the mining as well as online processing. Warehouse data also have a subset of data called Data Marts.

Q114. What are the different authentication modes in SQL Server? How can it be changed?

Windows mode and Mixed Mode – SQL and Windows. You can go to the below steps to change authentication mode in SQL Server:

  • Click Start> Programs> Microsoft SQL Server and click SQL Enterprise Manager to run SQL Enterprise Manager from the Microsoft SQL Server program group.
  • Then select the server from the Tools menu.
  • Select SQL Server Configuration Properties, and choose the Security page.

Q115. What are STUFF and REPLACE function?

STUFF Function :This function is used to overwrite existing character or inserts a string into another string. Syntax:
STUFF(string_expression,start, length, replacement_characters)
where,
string_expression :it is the string that will have characters substitutedstart: This refers to the starting position
length :It refers to the number of characters in the string which are substituted.replacement_string :They are the new characters which are injected in the string.

REPLACE function :This function is used to replace the existing characters of all the occurrences. Syntax:
REPLACE (string_expression, search_string, replacement_string)
Here every search_string in the string_expression will be replaced with the replacement_string.

So this brings us to the end of the SQL interview questions blog. I hope this set of SQL Interview Questions will help you ace your job interview. All the best for your interview!

Apart from this SQL Interview Questions Blog, if you want to get trained from professionals on SQL, you can opt for a structured training from edureka! Click below to know more.

Check out this MySQL DBA Certification Training by Edureka, a trusted online learning company with a network of meer dan 250.000 tevreden leerlingen verspreid over de hele wereld. Deze cursus leidt u op in de kernconcepten en geavanceerde tools en technieken om gegevens te beheren en de MySQL-database te beheren. It includes hands-on learning on concepts like MySQL Workbench, MySQL Server, Data Modeling, MySQL Connector, Database Design, MySQL Command line, MySQL Functions etc. End of the training you will be able to create and administer your own MySQL Database and manage data.

Heeft u een vraag voor ons? Please mention it in the comments section of this “ SQL Interview Questions” blog and we will get back to you as soon as possible.


  1. n-percentielberekeningen in postgresql

  2. Hoe te ontsnappen aan één citaat, speciale tekens in MySQL

  3. Optimalisatie van SQL-query's — Hoe te bepalen wanneer en of het nodig is?

  4. Hoe Glassfish Server handmatig in Eclipse te configureren