SlideShare a Scribd company logo
1 of 19
SQL: Basic Clause
Database and Database
Management System
A database is an organized
collection of data. Example:
bank, library
Database Management System
(DBMS) is a computer software that is
designed to manage, store, and
manipulate data.
Examples: MySQL, PostgreSQL,
Oracle
SQL (Structured Query
Language)
SQL is a language used in
programming to interact with the
database
SQL is the standard language that is
used in relational database
management system (RDMS)
SQL
Commands
DDL
Data Definition
Language
Change the table
structure which
includes creating
tables, deleting tables,
adding columns
Example:
- CREATE
- ALTER
- DROP
- TRUNCATE
DML
Data Manipulation
Language
Create changes on the
database
Example:
- INSERT
- UPDATE
- DELETE
DCL
Data Control
Language
Grant or revoke
authority over the
database
Example:
- GRANT
- REVOKE
TCL
Transaction Control
Language
Controlling changes
that are carried out by
DML
Example:
- COMMIT
- ROLLBACK
- SAVEPOINT
DQL
Data Query Language
Query data from the
database
Example:
- SELECT
PostgreSQL
Open-source RDBMS that
emphasizes extensibility and
SQL compliance
Types of Data in PostgreSQL
• INT: whole numbers
• FLOAT: positive or negative
number
• SERIAL: pseudo-type integer
• BOOLEAN: True/False
• DATE
• CHAR(n): Character, fixed-length,
blank-padded
• VARCHAR(n): Character, variable-
length
Examples of Queries
SELECT NamaKonsumen, Alamat FROM TabelKonsumen WHERE Deposit = 50000
Create a Database and Table
CREATE DATABASE nama_database;
DROP DATABASE nama_database;
Delete a Database and Table
Create a Database and Table
CREATE TABLE nama_tabel(
column1 datatype,
column2 datatype,
column3 datatype,
…);
CREATE TABLE karyawan(
id_karyawan SERIAL,
nama VARCHAR(32),
departemen VARCHAR(16),
posisi VARCHAR(16),
…);
Follow the
ordered
column
Insert the data into the table by using INSERT INTO
INSERT INTO
nama_tabel
VALUES
(value1, value2, value3, …);
INSERT INTO
nama_tabel (column1, column2,
column3,...)
VALUES
(value1, value2, value3, …);
Example
Delete the Data
DELETE FROM
nama_tabel
WHERE
kondisi;
Deleting data from the table with
a specific condition
DELETE FROM nama_tabel
Deleting all data from the table
Row or other data that
match the condition
will be deleted
ALTER TABLE - ADD COLUMN - DROP COLUMN - ALTER COLUMN
Add columns into the table
ALTER TABLE
nama_tabel
ADD COLUMN newcolumn1 datatype,
ADD COLUMN newcolumn2 datatype,
ADD COLUMN newcolumn3 datatype
…
ALTER TABLE
nama_tabel
DROP COLUMN newcolumn1,
DROP COLUMN newcolumn2,
DROP COLUMN newcolumn3
…
Delete columns in the table
ALTER TABLE nama_tabel ALTER COLUMN column_name TYPE
datatype
Change the data type in the column
You are hired as a data analyst by a small online store named Tokopaedi which is owned by Mr.
Edi. Tokopaedi does not have a database system and it is your job to build it. Your main tasks
as a data analyst are:
1. Create a database named Tokopaedi in PostgreSQL
2. Create a table named orders with its columns (you need to determine the data type of each
column based on their input)
The column’s header is marked with green
Create the Database
Create the Table
Remember the query:
CREATE TABLE_name of table
(column1 datatype, column2
datatype, column3 datatype,…)
And then click Run
Insert the Data
Query:
INSERT INTO
orders
VALUES ('CA-
2019-152156','CG-
12520',42420,'FUR-
BO-
10001798',261.96,2,
0,41.9136,'Furniture'
,'Bookcases','Bush
Somerset
Collection
Bookcase','11/8/201
9','11/11/2019','Seco
nd Class','Claire
Gute','Consumer','U
nited
States','Henderson',
'Kentucky','South’)
And then click Run
Don’t forget to write SELECT *
FROM orders. It is a query to
present the table
And then click Run
Result
Insert Another
Data Query:
INSERT INTO orders
VALUES ('CA-2019-
152156','CG-
12520',42420,'FUR-
CH-
10000454',731.94,3,0
,219.582,'Furniture','
Chairs','Hon Deluxe
Fabric Upholstered
Stacking Chairs
Rounded
Back','11/08/2019','1
1/11/2019','Second
Class','Claire
Gute','Consumer','U
nited
States','Henderson','
Kentucky','South’)
Then click Run
Result
SELECT * FROM orders to
present the Table
Follow me!
Instagram : elyadawigatip
Twitter : @EliNoBishamon
LinkedIn : https://www.linkedin.com/in/elyada-
wigati-pramaresti-1a2387170/
Bootcamp Data Analysis
by @myskill.id

More Related Content

Similar to SQL Basic Clause - Portfolio.pptx

My lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptx
My lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptxMy lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptx
My lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptx
EliasPetros
 
mySQL and Relational Databases
mySQL and Relational DatabasesmySQL and Relational Databases
mySQL and Relational Databases
webhostingguy
 
Introduction to sql new
Introduction to sql newIntroduction to sql new
Introduction to sql new
SANTOSH RATH
 
Creating a database
Creating a databaseCreating a database
Creating a database
Rahul Gupta
 

Similar to SQL Basic Clause - Portfolio.pptx (20)

My lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptx
My lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptxMy lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptx
My lablkxjlkxjcvlxkcjvlxckjvlxck ppt.pptx
 
Group Members
Group MembersGroup Members
Group Members
 
Unit - II.pptx
Unit - II.pptxUnit - II.pptx
Unit - II.pptx
 
SQL Queries - DDL Commands
SQL Queries - DDL CommandsSQL Queries - DDL Commands
SQL Queries - DDL Commands
 
Module 3
Module 3Module 3
Module 3
 
ppt.pdf
ppt.pdfppt.pdf
ppt.pdf
 
SQL
SQLSQL
SQL
 
SQL SERVER Training in Pune Slides
SQL SERVER Training in Pune SlidesSQL SERVER Training in Pune Slides
SQL SERVER Training in Pune Slides
 
mySQL and Relational Databases
mySQL and Relational DatabasesmySQL and Relational Databases
mySQL and Relational Databases
 
Chapter 4 Structured Query Language
Chapter 4 Structured Query LanguageChapter 4 Structured Query Language
Chapter 4 Structured Query Language
 
SQL2.pptx
SQL2.pptxSQL2.pptx
SQL2.pptx
 
Sql tutorial
Sql tutorialSql tutorial
Sql tutorial
 
BASIC_OF_DATABASE_PPT__new[1].pptx
BASIC_OF_DATABASE_PPT__new[1].pptxBASIC_OF_DATABASE_PPT__new[1].pptx
BASIC_OF_DATABASE_PPT__new[1].pptx
 
Introduction to sql new
Introduction to sql newIntroduction to sql new
Introduction to sql new
 
SQL_NOTES.pdf
SQL_NOTES.pdfSQL_NOTES.pdf
SQL_NOTES.pdf
 
PostgreSQL Database Slides
PostgreSQL Database SlidesPostgreSQL Database Slides
PostgreSQL Database Slides
 
Creating a database
Creating a databaseCreating a database
Creating a database
 
Lab
LabLab
Lab
 
Sql smart reference_by_prasad
Sql smart reference_by_prasadSql smart reference_by_prasad
Sql smart reference_by_prasad
 
Sql smart reference_by_prasad
Sql smart reference_by_prasadSql smart reference_by_prasad
Sql smart reference_by_prasad
 

More from Elyada Wigati Pramaresti

More from Elyada Wigati Pramaresti (8)

Final Project Data Visualization - Elyada Wigati
Final Project Data Visualization - Elyada WigatiFinal Project Data Visualization - Elyada Wigati
Final Project Data Visualization - Elyada Wigati
 
Final Project Python - Elyada Wigati Pramaresti.pptx
Final Project Python - Elyada Wigati Pramaresti.pptxFinal Project Python - Elyada Wigati Pramaresti.pptx
Final Project Python - Elyada Wigati Pramaresti.pptx
 
Final Project SQL - Elyada Wigati Pramaresti.pptx
Final Project SQL - Elyada Wigati Pramaresti.pptxFinal Project SQL - Elyada Wigati Pramaresti.pptx
Final Project SQL - Elyada Wigati Pramaresti.pptx
 
Working with Google Sheet - Portfolio.pptx
Working with Google Sheet - Portfolio.pptxWorking with Google Sheet - Portfolio.pptx
Working with Google Sheet - Portfolio.pptx
 
Intro to Statistics.pptx
Intro to Statistics.pptxIntro to Statistics.pptx
Intro to Statistics.pptx
 
Improvement as Data Analyst.pptx
Improvement as Data Analyst.pptxImprovement as Data Analyst.pptx
Improvement as Data Analyst.pptx
 
Kickstart Career as Data Analyst - Elyada Wigati Pramaresti.pptx
Kickstart Career as Data Analyst - Elyada Wigati Pramaresti.pptxKickstart Career as Data Analyst - Elyada Wigati Pramaresti.pptx
Kickstart Career as Data Analyst - Elyada Wigati Pramaresti.pptx
 
Microsoft Excel Basic to Advance - Sales Analysis
Microsoft Excel Basic to Advance - Sales AnalysisMicrosoft Excel Basic to Advance - Sales Analysis
Microsoft Excel Basic to Advance - Sales Analysis
 

Recently uploaded

Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
amitlee9823
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
MarinCaroMartnezBerg
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
amitlee9823
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
amitlee9823
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
amitlee9823
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
amitlee9823
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Anomaly detection and data imputation within time series
Anomaly detection and data imputation within time seriesAnomaly detection and data imputation within time series
Anomaly detection and data imputation within time series
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 

SQL Basic Clause - Portfolio.pptx

  • 2.
  • 3. Database and Database Management System A database is an organized collection of data. Example: bank, library Database Management System (DBMS) is a computer software that is designed to manage, store, and manipulate data. Examples: MySQL, PostgreSQL, Oracle SQL (Structured Query Language) SQL is a language used in programming to interact with the database SQL is the standard language that is used in relational database management system (RDMS)
  • 4. SQL Commands DDL Data Definition Language Change the table structure which includes creating tables, deleting tables, adding columns Example: - CREATE - ALTER - DROP - TRUNCATE DML Data Manipulation Language Create changes on the database Example: - INSERT - UPDATE - DELETE DCL Data Control Language Grant or revoke authority over the database Example: - GRANT - REVOKE TCL Transaction Control Language Controlling changes that are carried out by DML Example: - COMMIT - ROLLBACK - SAVEPOINT DQL Data Query Language Query data from the database Example: - SELECT
  • 5. PostgreSQL Open-source RDBMS that emphasizes extensibility and SQL compliance Types of Data in PostgreSQL • INT: whole numbers • FLOAT: positive or negative number • SERIAL: pseudo-type integer • BOOLEAN: True/False • DATE • CHAR(n): Character, fixed-length, blank-padded • VARCHAR(n): Character, variable- length
  • 6. Examples of Queries SELECT NamaKonsumen, Alamat FROM TabelKonsumen WHERE Deposit = 50000 Create a Database and Table CREATE DATABASE nama_database; DROP DATABASE nama_database; Delete a Database and Table
  • 7. Create a Database and Table CREATE TABLE nama_tabel( column1 datatype, column2 datatype, column3 datatype, …); CREATE TABLE karyawan( id_karyawan SERIAL, nama VARCHAR(32), departemen VARCHAR(16), posisi VARCHAR(16), …); Follow the ordered column Insert the data into the table by using INSERT INTO INSERT INTO nama_tabel VALUES (value1, value2, value3, …); INSERT INTO nama_tabel (column1, column2, column3,...) VALUES (value1, value2, value3, …); Example
  • 8. Delete the Data DELETE FROM nama_tabel WHERE kondisi; Deleting data from the table with a specific condition DELETE FROM nama_tabel Deleting all data from the table Row or other data that match the condition will be deleted
  • 9. ALTER TABLE - ADD COLUMN - DROP COLUMN - ALTER COLUMN Add columns into the table ALTER TABLE nama_tabel ADD COLUMN newcolumn1 datatype, ADD COLUMN newcolumn2 datatype, ADD COLUMN newcolumn3 datatype … ALTER TABLE nama_tabel DROP COLUMN newcolumn1, DROP COLUMN newcolumn2, DROP COLUMN newcolumn3 … Delete columns in the table ALTER TABLE nama_tabel ALTER COLUMN column_name TYPE datatype Change the data type in the column
  • 10.
  • 11. You are hired as a data analyst by a small online store named Tokopaedi which is owned by Mr. Edi. Tokopaedi does not have a database system and it is your job to build it. Your main tasks as a data analyst are: 1. Create a database named Tokopaedi in PostgreSQL 2. Create a table named orders with its columns (you need to determine the data type of each column based on their input) The column’s header is marked with green
  • 13. Create the Table Remember the query: CREATE TABLE_name of table (column1 datatype, column2 datatype, column3 datatype,…) And then click Run
  • 14. Insert the Data Query: INSERT INTO orders VALUES ('CA- 2019-152156','CG- 12520',42420,'FUR- BO- 10001798',261.96,2, 0,41.9136,'Furniture' ,'Bookcases','Bush Somerset Collection Bookcase','11/8/201 9','11/11/2019','Seco nd Class','Claire Gute','Consumer','U nited States','Henderson', 'Kentucky','South’) And then click Run
  • 15. Don’t forget to write SELECT * FROM orders. It is a query to present the table And then click Run
  • 17. Insert Another Data Query: INSERT INTO orders VALUES ('CA-2019- 152156','CG- 12520',42420,'FUR- CH- 10000454',731.94,3,0 ,219.582,'Furniture',' Chairs','Hon Deluxe Fabric Upholstered Stacking Chairs Rounded Back','11/08/2019','1 1/11/2019','Second Class','Claire Gute','Consumer','U nited States','Henderson',' Kentucky','South’) Then click Run
  • 18. Result SELECT * FROM orders to present the Table
  • 19. Follow me! Instagram : elyadawigatip Twitter : @EliNoBishamon LinkedIn : https://www.linkedin.com/in/elyada- wigati-pramaresti-1a2387170/ Bootcamp Data Analysis by @myskill.id