Hayden Eubanks

Computer Science: Cybersecurity

SQL Queries | Hayden Eubanks Portfolio
See Database Tables

SQL Queries Overview

Welcome to the SQL section of my portfolio. Here, you can explore various SQL queries that interact with the underlying database for this site. Each query is designed to showcase different aspects of SQL, including data retrieval, updates, and analysis.

Select a query below to view the details and see how it functions:

Min & Max Salaries Number of Employees Marketing Employees Number of Jobs Department Name Unique First Names FirstThreeCharacters

Write a query to get the department name for all employees. Include the employee’s first name, last name, and department name in your output (In that order). Sort the list by department name in ascending order, then by employee last name in ascending order and employee first name in ascending order (this query uses multiple tables).

SELECT employees.First_NAME AS 'First Name', employees.Last_Name AS 'Last Name', departments.department_name AS 'Department Name' FROM employees, departments WHERE (employees.department_ID = departments.department_ID) ORDER BY departments.department_name ASC, employees.Last_Name ASC, employees.Last_Name ASC;

First NameLast NameDepartment Name
WilliamGietzAccounting
ShelleyHigginsAccounting
JenniferWhalenAdministration
LexDe HaanExecutive
StevenKingExecutive
NeenaKochharExecutive
JohnChenFinance
DanielFavietFinance
NancyGreenbergFinance
LuisPoppFinance
IsmaelSciarraFinance
Jose ManuelUrmanFinance
SusanMavrisHuman Resources
DavidAustinIT
BruceErnstIT
AlexanderHunoldIT
DianaLorentzIT
ValliPataballaIT
PatFayMarketing
MichaelHartsteinMarketing
HermannBaerPublic Relations
ShelliBaidaPurchasing
KarenColmenaresPurchasing
GuyHimuroPurchasing
AlexanderKhooPurchasing
DenRaphaelyPurchasing
SigalTobiasPurchasing
EllenAbelSales
SundarAndeSales
AmitBandaSales
ElizabethBatesSales
DavidBernsteinSales
HarrisonBloomSales
GeraldCambraultSales
NanetteCambraultSales
LouiseDoranSales
AlbertoErrazurizSales
TaylerFoxSales
DanielleGreeneSales
PeterHallSales
AlyssaHuttonSales
CharlesJohnsonSales
JanetteKingSales
SunditaKumarSales
DavidLeeSales
JackLivingstonSales
MatteaMarvinsSales
AllanMcEwenSales
ChristopherOlsenSales
LisaOzerSales
KarenPartnersSales
JohnRussellSales
SarathSewallSales
LindseySmithSales
WilliamSmithSales
PatrickSullySales
JonathonTaylorSales
PeterTuckerSales
OliverTuvaultSales
ClaraVishneySales
EleniZlotkeySales
MozheAtkinsonShipping
SarahBellShipping
LauraBissotShipping
AlexisBullShipping
AnthonyCabrioShipping
KellyChungShipping
CurtisDaviesShipping
JuliaDellingerShipping
JenniferDillyShipping
BritneyEverettShipping
KevinFeeneyShipping
JeanFleaurShipping
AdamFrippShipping
TimothyGatesShipping
KiGeeShipping
GirardGeoniShipping
DouglasGrantShipping
VanceJonesShipping
PayamKauflingShipping
RenskeLadwigShipping
JamesLandryShipping
JasonMallinShipping
StevenMarkleShipping
JamesMarlowShipping
RandallMatosShipping
SamuelMcCainShipping
IreneMikkilineniShipping
KevinMourgosShipping
JuliaNayerShipping
DonaldOConnellShipping
TJOlsonShipping
JoshuaPatelShipping
RandallPerkinsShipping
HazelPhiltankerShipping
TrennaRajsShipping
MichaelRogersShipping
NanditaSarchandShipping
JohnSeoShipping
StephenStilesShipping
MarthaSullivanShipping
WinstonTaylorShipping
PeterVargasShipping
ShantaVollmanShipping
AlanaWalshShipping
MatthewWeissShipping
Close Query