SlideShare a Scribd company logo
SELECT STATEMENT
BASICS

Author: Renuka Parasuraman
Purpose
 The select statement is used to select the data from the
database.
Select Single Column
SELECT COLUMN_NAME
FROM TABLE_NAME;

Example:
SELECT D.DEPTNO
FROM DEPT D;
Select Multiple Columns
SELECT COLUMN_NAME, COLUMN_NAME
FROM TABLE_NAME;

Example:
SELECT D.DEPTNO , D.DEPT_NAME
FROM DEPT D;
Select Columns From Multiple Tables
SELECT *
FROM TABLE_NAME TABLE_1, TABLE_NAME TABLE_2

WHERE TABLE_1.COLUMN_NAME = TABLE_2.COLUMN_NAME;

Example:
SELECT *
FROM DEPT D, EMP E
WHERE D.DEPTNO = E.DEPTNO
Select All Columns
SELECT *
FROM TABLE_NAME;

Example:
SELECT *
FROM DEPT D;
Where Clause
SELECT COLUMN_NAME
FROM TABLE_NAME

WHERE CONDITIONS;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.DEPTNO = 10;
DISTINCT Rows
SELECT DISTINCT COLUMN_NAME
FROM TABLE_NAME;

Example:
SELECT DISTINCT E.DEPTNO
FROM EMP E;
AND Operator
SELECT COLUMN_NAME
FROM TABLE_NAME

WHERE CONDITION_1 AND CONDITION_2;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.DEPTNO = 10 AND D.LOCATION = ‘CHENNAI’;
OR Operator
SELECT COLUMN_NAME
FROM TABLE_NAME

WHERE CONDITION_1 OR CONDITION_2;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.DEPTNO = 10 OR D.DEPTNO = 20;
Select Rows With NULL values
SELECT *
FROM TABLE_NAME

WHERE COLUMN_NAME IS NULL;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.LOCATION IS NULL;
Select Rows Without NULL values
SELECT *
FROM TABLE_NAME

WHERE COLUMN_NAME IS NOT NULL;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.LOCATION IS NOT NULL;
ARITHMETIC OPERATORS
EQUAL(=) Operator
SELECT *
FROM TABLE_NAME

WHERE COLUMN_NAME = VALUE;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.LOCATION = ‘CHENNAI’;
Greater Than(>) Operator
SELECT *
FROM TABLE_NAME

WHERE COLUMN_NAME > VALUE;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.DEPTNO > 20’;
Lesser Than(<) Operator
SELECT *
FROM TABLE_NAME

WHERE COLUMN_NAME < VALUE;

Example:
SELECT D.DEPTNO
FROM DEPT D
WHERE D.DEPTNO < 20’;
AGGREGATE FUNCTIONS
SUM
SELECT SUM(COLUMN_NAME)
FROM TABLE_NAME;

Example:
SELECT SUM(E.BONUS)
FROM EMP E
MIN
SELECT MIN(COLUMN_NAME)
FROM TABLE_NAME;

Example:
SELECT MIN(E.SALARY)
FROM EMP E
MAX
SELECT MAX(COLUMN_NAME)
FROM TABLE_NAME;

Example:
SELECT MAX(E.SALARY)
FROM EMP E
AVG
SELECT AVG(COLUMN_NAME)
FROM TABLE_NAME;

Example:
SELECT AVG(E.SALARY)
FROM EMP E
COUNT
SELECT COUNT(COLUMN_NAME)
FROM TABLE_NAME;

Example:
SELECT COUNT(E.BONUS)
FROM EMP E
COUNT(*)
SELECT COUNT(*)
FROM TABLE_NAME;

Example:
SELECT COUNT(*)
FROM EMP E
GROUP BY
SELECT COLUMN_NAME,
GROUP_FUNCTION(COLUMN_NAME)
FROM TABLE_NAME;

Example:
SELECT E.DEPTNO, COUNT(*)

FROM EMP E
GROUP BY E.DEPTNO;
HAVING CLAUSE
SELECT COLUMN_NAME,
GROUP_FUNCTION(COLUMN_NAME)
FROM TABLE_NAME
HAVING CONDITION;

Example:

SELECT E.DEPTNO, COUNT(*)
FROM EMP E
GROUP BY E.DEPTNO
HAVING COUNT(*) > 2;
ORDER BY ASCENDING ORDER
SELECT *
FROM TABLE_NAME

ORDER BY COLUMN_NAME, COLUMN_NAME ASC;

Example:
SELECT *
FROM EMP E
ORDER BY E.EMPTNO ASC;
ORDER BY DESCENDING ORDER
SELECT *
FROM TABLE_NAME

ORDER BY COLUMN_NAME, COLUMN_NAME DESC;

Example:
SELECT *
FROM EMP E
ORDER BY E.EMPTNO DESC;
ORDER BY COLUMN POSITION
SELECT *
FROM TABLE_NAME

ORDER BY COLUMN_ORDER, COLUMN_ORDER;

Example:
SELECT *
FROM EMP E
ORDER BY 1,2 ;
IN Operator
SELECT *
FROM TABLE_NAME

COLUMN_NAME IN (VALUE,VALUE);

Example:
SELECT *
FROM EMP E
WHERE E.DEPTNO IN (10,20);
BETWEEN Operator
SELECT *
FROM TABLE_NAME

COLUMN_NAME BETWEEN START_RANGE AND END_RANGE;

Example:
SELECT *
FROM EMP E
WHERE E.DEPTNO BETWEEN 10 AND 30;
ARITHMETIC FUNCTIONS
ABS
SELECT ABS(X) FROM DUAL;

Example:
SELECT ABS(-100), ABS(100)
FROM DUAL;
SIGN
SELECT SIGN(X) FROM DUAL;

Example:
SELECT SIGN(-1), SIGN(1), SIGN(0)
FROM DUAL;
MOD
SELECT MOD(X,Y) FROM DUAL;

Example:
SELECT MOD(100,10)
FROM DUAL;
FLOOR
SELECT FLOOR(X) FROM DUAL;

Example:
SELECT FLOOR(13.36)
FROM DUAL;
POWER
SELECT POWER(X,Y) FROM DUAL;

Example:
SELECT POWER(10,2)
FROM DUAL;
ROUND
SELECT ROUND(X) FROM DUAL;

Example:
SELECT ROUND(10.20)
FROM DUAL;

SELECT ROUND(10.20, 2)
FROM DUAL;
SQRT
SELECT SQRT(X) FROM DUAL;

Example:
SELECT SQRT(2)
FROM DUAL;

More Related Content

What's hot

Climbing the Abstract Syntax Tree (Forum PHP 2017)
Climbing the Abstract Syntax Tree (Forum PHP 2017)Climbing the Abstract Syntax Tree (Forum PHP 2017)
Climbing the Abstract Syntax Tree (Forum PHP 2017)
James Titcumb
 
Climbing the Abstract Syntax Tree (PHP Russia 2019)
Climbing the Abstract Syntax Tree (PHP Russia 2019)Climbing the Abstract Syntax Tree (PHP Russia 2019)
Climbing the Abstract Syntax Tree (PHP Russia 2019)
James Titcumb
 
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
James Titcumb
 
Climbing the Abstract Syntax Tree (DPC 2017)
Climbing the Abstract Syntax Tree (DPC 2017)Climbing the Abstract Syntax Tree (DPC 2017)
Climbing the Abstract Syntax Tree (DPC 2017)
James Titcumb
 
Climbing the Abstract Syntax Tree (IPC Fall 2017)
Climbing the Abstract Syntax Tree (IPC Fall 2017)Climbing the Abstract Syntax Tree (IPC Fall 2017)
Climbing the Abstract Syntax Tree (IPC Fall 2017)
James Titcumb
 
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
James Titcumb
 
SQL Quick Reference Card
SQL Quick Reference CardSQL Quick Reference Card
SQL Quick Reference Card
Techcanvass
 
sertifikat bhs inggris
sertifikat bhs inggrissertifikat bhs inggris
sertifikat bhs inggris
Anitasari SE
 
PHP 101
PHP 101 PHP 101
PHP 101
Muhammad Hijazi
 
Climbing the Abstract Syntax Tree (php[world] 2019)
Climbing the Abstract Syntax Tree (php[world] 2019)Climbing the Abstract Syntax Tree (php[world] 2019)
Climbing the Abstract Syntax Tree (php[world] 2019)
James Titcumb
 
Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)
Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)
Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)
James Titcumb
 
cafeteria info management system
cafeteria info management systemcafeteria info management system
cafeteria info management system
Gaurav Subham
 
Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)
Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)
Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)
James Titcumb
 
Class 4 - PHP Arrays
Class 4 - PHP ArraysClass 4 - PHP Arrays
Class 4 - PHP Arrays
Ahmed Swilam
 

What's hot (14)

Climbing the Abstract Syntax Tree (Forum PHP 2017)
Climbing the Abstract Syntax Tree (Forum PHP 2017)Climbing the Abstract Syntax Tree (Forum PHP 2017)
Climbing the Abstract Syntax Tree (Forum PHP 2017)
 
Climbing the Abstract Syntax Tree (PHP Russia 2019)
Climbing the Abstract Syntax Tree (PHP Russia 2019)Climbing the Abstract Syntax Tree (PHP Russia 2019)
Climbing the Abstract Syntax Tree (PHP Russia 2019)
 
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
 
Climbing the Abstract Syntax Tree (DPC 2017)
Climbing the Abstract Syntax Tree (DPC 2017)Climbing the Abstract Syntax Tree (DPC 2017)
Climbing the Abstract Syntax Tree (DPC 2017)
 
Climbing the Abstract Syntax Tree (IPC Fall 2017)
Climbing the Abstract Syntax Tree (IPC Fall 2017)Climbing the Abstract Syntax Tree (IPC Fall 2017)
Climbing the Abstract Syntax Tree (IPC Fall 2017)
 
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
 
SQL Quick Reference Card
SQL Quick Reference CardSQL Quick Reference Card
SQL Quick Reference Card
 
sertifikat bhs inggris
sertifikat bhs inggrissertifikat bhs inggris
sertifikat bhs inggris
 
PHP 101
PHP 101 PHP 101
PHP 101
 
Climbing the Abstract Syntax Tree (php[world] 2019)
Climbing the Abstract Syntax Tree (php[world] 2019)Climbing the Abstract Syntax Tree (php[world] 2019)
Climbing the Abstract Syntax Tree (php[world] 2019)
 
Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)
Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)
Climbing the Abstract Syntax Tree (CodeiD PHP Odessa 2017)
 
cafeteria info management system
cafeteria info management systemcafeteria info management system
cafeteria info management system
 
Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)
Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)
Climbing the Abstract Syntax Tree (Bulgaria PHP 2016)
 
Class 4 - PHP Arrays
Class 4 - PHP ArraysClass 4 - PHP Arrays
Class 4 - PHP Arrays
 

Viewers also liked

Profilku-Training
Profilku-TrainingProfilku-Training
Profilku-Training
Hadi Azis Pratama
 
Finalaya featured result_10may2013
Finalaya featured result_10may2013Finalaya featured result_10may2013
Finalaya featured result_10may2013
Investors Empowered
 
01review
01review01review
01review
IIUM
 
Csc1100 lecture13 ch16_pt1
Csc1100 lecture13 ch16_pt1Csc1100 lecture13 ch16_pt1
Csc1100 lecture13 ch16_pt1
IIUM
 
Paper no.03 Literary Theory and Criticism
Paper no.03 Literary Theory and CriticismPaper no.03 Literary Theory and Criticism
Paper no.03 Literary Theory and Criticism
poojabhaliya007
 
Select Refresh For SAP PPT Show
Select Refresh  For SAP PPT ShowSelect Refresh  For SAP PPT Show
Select Refresh For SAP PPT Show
cspencert
 
Group p1
Group p1Group p1
Group p1
IIUM
 
Ejercicio 2
Ejercicio 2Ejercicio 2
Social Background in "Kanthapura".
Social Background in "Kanthapura".Social Background in "Kanthapura".
Social Background in "Kanthapura".
Pooja Bhaliya
 
preparation of a unit "identities"
preparation of a unit "identities"preparation of a unit "identities"
preparation of a unit "identities"
Naseera noushad
 
The Big Bang
The Big BangThe Big Bang
The Big Bang
Tom Cole
 
Chap2 practice key
Chap2 practice keyChap2 practice key
Chap2 practice key
IIUM
 
Paper no.04 Indian Writing In English
Paper no.04 Indian Writing In EnglishPaper no.04 Indian Writing In English
Paper no.04 Indian Writing In English
poojabhaliya007
 
Programacion Orientada a Objetos
Programacion Orientada a ObjetosProgramacion Orientada a Objetos
Programacion Orientada a Objetos
Manuel Antonio
 
Oops concept in c++ unit 3 -topic 4
Oops concept in c++ unit 3 -topic 4Oops concept in c++ unit 3 -topic 4
Oops concept in c++ unit 3 -topic 4
MOHIT TOMAR
 

Viewers also liked (15)

Profilku-Training
Profilku-TrainingProfilku-Training
Profilku-Training
 
Finalaya featured result_10may2013
Finalaya featured result_10may2013Finalaya featured result_10may2013
Finalaya featured result_10may2013
 
01review
01review01review
01review
 
Csc1100 lecture13 ch16_pt1
Csc1100 lecture13 ch16_pt1Csc1100 lecture13 ch16_pt1
Csc1100 lecture13 ch16_pt1
 
Paper no.03 Literary Theory and Criticism
Paper no.03 Literary Theory and CriticismPaper no.03 Literary Theory and Criticism
Paper no.03 Literary Theory and Criticism
 
Select Refresh For SAP PPT Show
Select Refresh  For SAP PPT ShowSelect Refresh  For SAP PPT Show
Select Refresh For SAP PPT Show
 
Group p1
Group p1Group p1
Group p1
 
Ejercicio 2
Ejercicio 2Ejercicio 2
Ejercicio 2
 
Social Background in "Kanthapura".
Social Background in "Kanthapura".Social Background in "Kanthapura".
Social Background in "Kanthapura".
 
preparation of a unit "identities"
preparation of a unit "identities"preparation of a unit "identities"
preparation of a unit "identities"
 
The Big Bang
The Big BangThe Big Bang
The Big Bang
 
Chap2 practice key
Chap2 practice keyChap2 practice key
Chap2 practice key
 
Paper no.04 Indian Writing In English
Paper no.04 Indian Writing In EnglishPaper no.04 Indian Writing In English
Paper no.04 Indian Writing In English
 
Programacion Orientada a Objetos
Programacion Orientada a ObjetosProgramacion Orientada a Objetos
Programacion Orientada a Objetos
 
Oops concept in c++ unit 3 -topic 4
Oops concept in c++ unit 3 -topic 4Oops concept in c++ unit 3 -topic 4
Oops concept in c++ unit 3 -topic 4
 

Similar to Oracle select statment

Oracle Training in Kochi | Trivandrum |Thrissur
Oracle Training in Kochi | Trivandrum |ThrissurOracle Training in Kochi | Trivandrum |Thrissur
Oracle Training in Kochi | Trivandrum |Thrissur
IndiaOptions Softwares
 
Sql dml & tcl 2
Sql   dml & tcl 2Sql   dml & tcl 2
Sql dml & tcl 2
Dr. C.V. Suresh Babu
 
Sql query [select, sub] 4
Sql query [select, sub] 4Sql query [select, sub] 4
Sql query [select, sub] 4
Dr. C.V. Suresh Babu
 
My SQL.pptx
My SQL.pptxMy SQL.pptx
My SQL.pptx
KieveBarreto1
 
SQL Tutorial for Beginners
SQL Tutorial for BeginnersSQL Tutorial for Beginners
SQL Tutorial for Beginners
Abdelhay Shafi
 
Chapter08
Chapter08Chapter08
Chapter08
sasa_eldoby
 
Sql Tags
Sql TagsSql Tags
SQL : Structured Query Language
SQL : Structured Query LanguageSQL : Structured Query Language
SQL : Structured Query Language
Abhishek Gautam
 
Babitha2.mysql
Babitha2.mysqlBabitha2.mysql
Babitha2.mysql
banubabitha
 
Babitha2 Mysql
Babitha2 MysqlBabitha2 Mysql
Babitha2 Mysql
banubabitha
 
Structured query language(sql)
Structured query language(sql)Structured query language(sql)
Structured query language(sql)
Huda Alameen
 
Oracle
OracleOracle
Prabu's sql quries
Prabu's sql quries Prabu's sql quries
Prabu's sql quries
Prabu Cse
 
SQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint PresentationSQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint Presentation
maitypradip938
 
V22 function-1
V22 function-1V22 function-1
V22 function-1
Dhirendra Chauhan
 
My sql Syntax
My sql SyntaxMy sql Syntax
My sql Syntax
Reka
 
Msql query
Msql queryMsql query
Msql query
harman kaur
 
Creating database using sql commands
Creating database using sql commandsCreating database using sql commands
Creating database using sql commands
Belle Wx
 
My sql
My sqlMy sql
My sql
Nadhi ya
 
Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03
Thuan Nguyen
 

Similar to Oracle select statment (20)

Oracle Training in Kochi | Trivandrum |Thrissur
Oracle Training in Kochi | Trivandrum |ThrissurOracle Training in Kochi | Trivandrum |Thrissur
Oracle Training in Kochi | Trivandrum |Thrissur
 
Sql dml & tcl 2
Sql   dml & tcl 2Sql   dml & tcl 2
Sql dml & tcl 2
 
Sql query [select, sub] 4
Sql query [select, sub] 4Sql query [select, sub] 4
Sql query [select, sub] 4
 
My SQL.pptx
My SQL.pptxMy SQL.pptx
My SQL.pptx
 
SQL Tutorial for Beginners
SQL Tutorial for BeginnersSQL Tutorial for Beginners
SQL Tutorial for Beginners
 
Chapter08
Chapter08Chapter08
Chapter08
 
Sql Tags
Sql TagsSql Tags
Sql Tags
 
SQL : Structured Query Language
SQL : Structured Query LanguageSQL : Structured Query Language
SQL : Structured Query Language
 
Babitha2.mysql
Babitha2.mysqlBabitha2.mysql
Babitha2.mysql
 
Babitha2 Mysql
Babitha2 MysqlBabitha2 Mysql
Babitha2 Mysql
 
Structured query language(sql)
Structured query language(sql)Structured query language(sql)
Structured query language(sql)
 
Oracle
OracleOracle
Oracle
 
Prabu's sql quries
Prabu's sql quries Prabu's sql quries
Prabu's sql quries
 
SQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint PresentationSQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint Presentation
 
V22 function-1
V22 function-1V22 function-1
V22 function-1
 
My sql Syntax
My sql SyntaxMy sql Syntax
My sql Syntax
 
Msql query
Msql queryMsql query
Msql query
 
Creating database using sql commands
Creating database using sql commandsCreating database using sql commands
Creating database using sql commands
 
My sql
My sqlMy sql
My sql
 
Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03
 

Recently uploaded

Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 

Recently uploaded (20)

Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 

Oracle select statment