SlideShare a Scribd company logo
1 of 16
Download to read offline
Linguagem SQL
   g g

PROGRAMAÇÃO DE SISTEMAS 
      Á
INFORMÁTICOS
Linguagem SQL

A linguagem SQL pode‐se dividir essencialmente 
   em quatro grupos de comandos
       q     g p
   DDL – Data Definition Language
   (CREATE, ALTER, DROP )
   DML – Data Manipulation Language
   (INSERT, UPDATE, DELETE, SELECT)
   DCL – Data Control Language
   (GRANT, REVOKE)
   DTL – Data Transation Language
   (BEGIN WORK, COMMIT, ROLLBACK)
DDL Data Definition Language

 CREATE 
 {DATABASE | TABLES | INDEX | VIEWS}
 DROP 
 {DATABASE | TABLES | INDEX | VIEWS}
 ALTER TABLE
 RENAME TABLE
CREATE DATABASE Syntax

CREATE DATABASE  [IF NOT EXISTS] db_name
  [
  [create_specification [, create_specification] 
           p f          [,         p f         ]
  ...]

create_specification:    [DEFAULT] CHARACTER 
  SET charset_name
  SET charset name | [DEFAULT] COLLATE 
  collation_name

http://dev.mysql.com/doc/refman/5.0/en/create
  ‐database.html
   d t b    ht l
CREATE TABLE Syntax
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,...)]    
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl name [(create definition )]    
   [table_options] [select_statement] 

create_definition:    
     column_definition
| [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...)  
| KEY [index_name] [index_type] (index_col_name,...)  
| INDEX [index_name] [index_type] (index_col_name,...)  
| [CONSTRAINT [symbol]] UNIQUE [INDEX]  [index_name] [index_type] 
     (index_col_name,...)  
| [FULLTEXT|SPATIAL] [INDEX] [index_name] (index_col_name,...)  
| [FULLTEXT|SPATIAL] [INDEX] [index name] (index col name, )  
| [CONSTRAINT [symbol]] FOREIGN KEY        [index_name] (index_col_name,...) 
     [reference_definition]  
| CHECK (expr)column_definition:    col_name type [NOT NULL | NULL] [DEFAULT 
     default_value]        [AUTO_INCREMENT] [[PRIMARY] KEY] [COMMENT  string ]        
     default value]        [AUTO INCREMENT] [[PRIMARY] KEY] [COMMENT 'string']        
     [reference_definition] 

http://dev.mysql.com/doc/refman/5.0/en/create table.htm
http://dev mysql com/doc/refman/5 0/en/create‐table htm
CREATE INDEX Syntax

CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX 
  index_name [index_type]    ON tbl_name
  index name [index type]    ON tbl name
  (index_col_name,...)index_col_name:    
  col_name
  col name [(length)] [ASC | DESC]

http://dev.mysql.com/doc/refman/5.0/en/create
  ‐index.html
CREATE VIEW Syntax

CREATE [OR REPLACE] [ALGORITHM = 
  {UNDEFINED | MERGE | TEMPTABLE}]    
  VIEW view_name [(column_list)]    AS 
  select_statement
  select statement [WITH [CASCADED | 
  LOCAL] CHECK OPTION]

http://dev.mysql.com/doc/refman/5.0/en/create
   p //     y q     /   /      /5 / /
  ‐view.html
DROP Syntax

  DROP {DATABASE | SCHEMA} [IF EXISTS] 
  db_name
  DROP INDEX index_name ON tbl_name
  DROP [TEMPORARY] TABLE [IF EXISTS]    
  tbl_name [  tbl
  tbl      [, tbl_name] ...    [RESTRICT | 
                        ]      [RESTRICT | 
  CASCADE]
  DROP VIEW [IF EXISTS]    view_name [, 
  DROP VIEW [IF EXISTS]    view name [  
  view_name] ...    [RESTRICT | CASCADE]

http://dev.mysql.com/doc/refman/5.0/en/sql‐
  syntax‐data‐definition.html
   y
RENAME TABLE Syntax


 RENAME {DATABASE | SCHEMA} db_name
 RENAME {DATABASE | SCHEMA} db name
 TO new_db_name; 

 RENAME  TABLE tbl_name TO new_tb _name
                  tb a e O e tbl a e
 [, tbl_name2 TO new_tbl_name2] ... 
DML Data Manipulation Language


 INSERT
 DELETE
 UPDATE
 LOAD DATA INFILE
 SELECT
 UNION
INSERT Syntax
 INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] 
 [IGNORE]    [INTO] tbl_name [(col_name,...)]    VALUES 
 ({expr | DEFAULT} ) ( )     [ ON DUPLICATE KEY 
        | DEFAULT},...),(...),...    [ ON DUPLICATE KEY 
 UPDATE col_name=expr, ... ]
 INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] 
 [IGNORE]    [INTO] tbl_name SET  l
 [IGNORE]    [INTO] tbl                SET col_name={expr | 
                                                    {
 DEFAULT}, ...    [ ON DUPLICATE KEY UPDATE 
 col_name=expr, ... ]
 INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] 
 [IGNORE]    [INTO] tbl_name [(col_name,...)]    SELECT ...
DELETE Syntax

DELETE [LOW_PRIORITY] [QUICK] [IGNORE] 
 FROM tbl_name
 FROM tbl name [WHERE 
 where_definition]       [ORDER BY ...]       [LIMIT 
 row_count]
 row count]
UPDATE Syntax

UPDATE [LOW_PRIORITY] [IGNORE] tbl_name
 SET col_name1=expr1 [, col_name2=expr2 ]    
 SET col name1=expr1 [  col name2=expr2 ...]    
 [WHERE where_definition]    [ORDER BY ...]    
 [LIMIT row_count]
 [LIMIT row count]
LOAD DATA INFILE Syntax

LOAD DATA [LOW_PRIORITY | CONCURRENT] 
  [
  [LOCAL] INFILE 'file_name.txt'    [REPLACE | 
          ]          f                   [         |
  IGNORE]    INTO TABLE tbl_name [FIELDS        
  [
  [TERMINATED BY 't']        [[OPTIONALLY] 
                         ]    [[               ]
  ENCLOSED BY '']        [ESCAPED BY '' ]    ]    
  [LINES         [STARTING BY '']            
  [TERMINATED BY 'n']    ]    [IGNORE number
  LINES]    [(col_name,...)]
SELECT Syntax
SELECT    [ALL | DISTINCT | DISTINCTROW ]      [HIGH_PRIORITY]      [STRAIGHT_JOIN]      
    [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]      [SQL_CACHE | 
    SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]
select_expr, ...    
[INTO OUTFILE 'file_name' export_options | INTO DUMPFILE 
    'file_name']    
[FROM table_references
[WHERE where_definition]      
[GROUP BY {col_name
[GROUP BY {col name | expr | position} [ASC | DESC]    [WITH 
                               | position} [ASC | DESC], ... [WITH 
    ROLLUP]]      
[HAVING where_definition]      
[ORDER BY {col_name
[ORDER BY {col name | expr | position}  [ASC | DESC]    ]      
                               | position}  [ASC | DESC] , ...]      
[LIMIT {[offset,] row_count | row_count OFFSET offset}]      
[PROCEDURE procedure_name(argument_list)]      
[FOR UPDATE | LOCK IN SHARE MODE]]
UNION Syntax

  SELECT ...
UNION [ALL | DISTINCT]
  SELECT ...  
[UNION [ALL | DISTINCT]   
  SELECT ...]
  SELECT  ]

More Related Content

What's hot

Procedure To Store Database Object Size And Number Of Rows In Custom Table
Procedure To Store Database Object Size And Number Of Rows In Custom TableProcedure To Store Database Object Size And Number Of Rows In Custom Table
Procedure To Store Database Object Size And Number Of Rows In Custom TableAhmed Elshayeb
 
Functional perl
Functional perlFunctional perl
Functional perlErrorific
 
R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)Christopher Roach
 
Data structure in perl
Data structure in perlData structure in perl
Data structure in perlsana mateen
 
Ddl & dml commands
Ddl & dml commandsDdl & dml commands
Ddl & dml commandsAnjaliJain167
 
The Ring programming language version 1.5.1 book - Part 21 of 180
The Ring programming language version 1.5.1 book - Part 21 of 180The Ring programming language version 1.5.1 book - Part 21 of 180
The Ring programming language version 1.5.1 book - Part 21 of 180Mahmoud Samir Fayed
 
Simple Strategies for faster knowledge discovery in big data
Simple Strategies for faster knowledge discovery in big dataSimple Strategies for faster knowledge discovery in big data
Simple Strategies for faster knowledge discovery in big dataRitesh Agrawal
 
learn you some erlang - chap 9 to chap10
learn you some erlang - chap 9 to chap10learn you some erlang - chap 9 to chap10
learn you some erlang - chap 9 to chap10경미 김
 
On Functional Programming - A Clojurian Perspective
On Functional Programming - A Clojurian PerspectiveOn Functional Programming - A Clojurian Perspective
On Functional Programming - A Clojurian Perspectivelooselytyped
 
Using Scala Slick at FortyTwo
Using Scala Slick at FortyTwoUsing Scala Slick at FortyTwo
Using Scala Slick at FortyTwoEishay Smith
 
Introduction to sql new
Introduction to sql newIntroduction to sql new
Introduction to sql newSANTOSH RATH
 
data constraints,group by
data constraints,group by data constraints,group by
data constraints,group by Visakh V
 
The Ring programming language version 1.7 book - Part 35 of 196
The Ring programming language version 1.7 book - Part 35 of 196The Ring programming language version 1.7 book - Part 35 of 196
The Ring programming language version 1.7 book - Part 35 of 196Mahmoud Samir Fayed
 

What's hot (20)

Tables And SQL basics
Tables And SQL basicsTables And SQL basics
Tables And SQL basics
 
Procedure To Store Database Object Size And Number Of Rows In Custom Table
Procedure To Store Database Object Size And Number Of Rows In Custom TableProcedure To Store Database Object Size And Number Of Rows In Custom Table
Procedure To Store Database Object Size And Number Of Rows In Custom Table
 
Functional perl
Functional perlFunctional perl
Functional perl
 
NOTES ON "FOXPRO"
NOTES ON "FOXPRO" NOTES ON "FOXPRO"
NOTES ON "FOXPRO"
 
R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)
 
Data structure in perl
Data structure in perlData structure in perl
Data structure in perl
 
Ddl & dml commands
Ddl & dml commandsDdl & dml commands
Ddl & dml commands
 
The Ring programming language version 1.5.1 book - Part 21 of 180
The Ring programming language version 1.5.1 book - Part 21 of 180The Ring programming language version 1.5.1 book - Part 21 of 180
The Ring programming language version 1.5.1 book - Part 21 of 180
 
Simple Strategies for faster knowledge discovery in big data
Simple Strategies for faster knowledge discovery in big dataSimple Strategies for faster knowledge discovery in big data
Simple Strategies for faster knowledge discovery in big data
 
Oracle: PLSQL Commands
Oracle: PLSQL CommandsOracle: PLSQL Commands
Oracle: PLSQL Commands
 
PHP 101
PHP 101 PHP 101
PHP 101
 
Functional programming with php7
Functional programming with php7Functional programming with php7
Functional programming with php7
 
learn you some erlang - chap 9 to chap10
learn you some erlang - chap 9 to chap10learn you some erlang - chap 9 to chap10
learn you some erlang - chap 9 to chap10
 
On Functional Programming - A Clojurian Perspective
On Functional Programming - A Clojurian PerspectiveOn Functional Programming - A Clojurian Perspective
On Functional Programming - A Clojurian Perspective
 
R code for data manipulation
R code for data manipulationR code for data manipulation
R code for data manipulation
 
Using Scala Slick at FortyTwo
Using Scala Slick at FortyTwoUsing Scala Slick at FortyTwo
Using Scala Slick at FortyTwo
 
Introduction to sql new
Introduction to sql newIntroduction to sql new
Introduction to sql new
 
data constraints,group by
data constraints,group by data constraints,group by
data constraints,group by
 
Sqlbysandeep
SqlbysandeepSqlbysandeep
Sqlbysandeep
 
The Ring programming language version 1.7 book - Part 35 of 196
The Ring programming language version 1.7 book - Part 35 of 196The Ring programming language version 1.7 book - Part 35 of 196
The Ring programming language version 1.7 book - Part 35 of 196
 

Viewers also liked

8 Tips that get you more Results from Email Marketing
8 Tips that get you more Results from Email Marketing8 Tips that get you more Results from Email Marketing
8 Tips that get you more Results from Email MarketingCamelia Bulea
 
BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE
BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE
BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE SUSAN HARVEY
 
達人出版会からPHPの本を出版しよう
達人出版会からPHPの本を出版しよう達人出版会からPHPの本を出版しよう
達人出版会からPHPの本を出版しようkenjis
 
EdComs Classroom Everywhere - Michaela Kirsop-Holdford
 EdComs Classroom Everywhere - Michaela Kirsop-Holdford EdComs Classroom Everywhere - Michaela Kirsop-Holdford
EdComs Classroom Everywhere - Michaela Kirsop-HoldfordEdComs
 
Brandweerkazerne Oud Nico
Brandweerkazerne Oud NicoBrandweerkazerne Oud Nico
Brandweerkazerne Oud Nicokcrabbendam
 
はじめてのMercurial/Bitbucket その2
 はじめてのMercurial/Bitbucket その2 はじめてのMercurial/Bitbucket その2
はじめてのMercurial/Bitbucket その2kenjis
 
Manual de Identidade Visual - Amanda Melina
Manual de Identidade Visual - Amanda MelinaManual de Identidade Visual - Amanda Melina
Manual de Identidade Visual - Amanda MelinaGustavo Macedo
 
Treino do Corinthians (07/07/2011)
Treino do Corinthians (07/07/2011)Treino do Corinthians (07/07/2011)
Treino do Corinthians (07/07/2011)Lorena Ribeiro
 
2011wpi
2011wpi2011wpi
2011wpieshuy
 
מצגת כנס ג'וליו 2011
מצגת כנס ג'וליו 2011מצגת כנס ג'וליו 2011
מצגת כנס ג'וליו 2011nirtamir
 
CodeIgniterユーザガイドの翻訳に参加しよう!
CodeIgniterユーザガイドの翻訳に参加しよう!CodeIgniterユーザガイドの翻訳に参加しよう!
CodeIgniterユーザガイドの翻訳に参加しよう!kenjis
 
ScrumMaster activities in building a winning self organized teams - Naveen Na...
ScrumMaster activities in building a winning self organized teams - Naveen Na...ScrumMaster activities in building a winning self organized teams - Naveen Na...
ScrumMaster activities in building a winning self organized teams - Naveen Na...Naveen Nanjundappa
 
Microsoft Project workshop in Pune 6th & 7th August
Microsoft Project workshop in Pune 6th & 7th AugustMicrosoft Project workshop in Pune 6th & 7th August
Microsoft Project workshop in Pune 6th & 7th Augustvrushalis
 
20100111 acceleration
20100111 acceleration20100111 acceleration
20100111 accelerationeddiebarnes80
 

Viewers also liked (17)

8 Tips that get you more Results from Email Marketing
8 Tips that get you more Results from Email Marketing8 Tips that get you more Results from Email Marketing
8 Tips that get you more Results from Email Marketing
 
Empathize and define
Empathize and defineEmpathize and define
Empathize and define
 
BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE
BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE
BUYING HOME IN FLORIDA- WHAT YOU'LL NEED FOR YOUR MORTGAGE
 
達人出版会からPHPの本を出版しよう
達人出版会からPHPの本を出版しよう達人出版会からPHPの本を出版しよう
達人出版会からPHPの本を出版しよう
 
Nida final
Nida finalNida final
Nida final
 
EdComs Classroom Everywhere - Michaela Kirsop-Holdford
 EdComs Classroom Everywhere - Michaela Kirsop-Holdford EdComs Classroom Everywhere - Michaela Kirsop-Holdford
EdComs Classroom Everywhere - Michaela Kirsop-Holdford
 
Brandweerkazerne Oud Nico
Brandweerkazerne Oud NicoBrandweerkazerne Oud Nico
Brandweerkazerne Oud Nico
 
はじめてのMercurial/Bitbucket その2
 はじめてのMercurial/Bitbucket その2 はじめてのMercurial/Bitbucket その2
はじめてのMercurial/Bitbucket その2
 
Manual de Identidade Visual - Amanda Melina
Manual de Identidade Visual - Amanda MelinaManual de Identidade Visual - Amanda Melina
Manual de Identidade Visual - Amanda Melina
 
Treino do Corinthians (07/07/2011)
Treino do Corinthians (07/07/2011)Treino do Corinthians (07/07/2011)
Treino do Corinthians (07/07/2011)
 
2011wpi
2011wpi2011wpi
2011wpi
 
מצגת כנס ג'וליו 2011
מצגת כנס ג'וליו 2011מצגת כנס ג'וליו 2011
מצגת כנס ג'וליו 2011
 
CodeIgniterユーザガイドの翻訳に参加しよう!
CodeIgniterユーザガイドの翻訳に参加しよう!CodeIgniterユーザガイドの翻訳に参加しよう!
CodeIgniterユーザガイドの翻訳に参加しよう!
 
ScrumMaster activities in building a winning self organized teams - Naveen Na...
ScrumMaster activities in building a winning self organized teams - Naveen Na...ScrumMaster activities in building a winning self organized teams - Naveen Na...
ScrumMaster activities in building a winning self organized teams - Naveen Na...
 
Microsoft Project workshop in Pune 6th & 7th August
Microsoft Project workshop in Pune 6th & 7th AugustMicrosoft Project workshop in Pune 6th & 7th August
Microsoft Project workshop in Pune 6th & 7th August
 
Tekids circus
Tekids circusTekids circus
Tekids circus
 
20100111 acceleration
20100111 acceleration20100111 acceleration
20100111 acceleration
 

Similar to Linguagem sql

Introducción rápida a SQL
Introducción rápida a SQLIntroducción rápida a SQL
Introducción rápida a SQLCarlos Hernando
 
Database Systems - SQL - DDL Statements (Chapter 3/2)
Database Systems - SQL - DDL Statements (Chapter 3/2)Database Systems - SQL - DDL Statements (Chapter 3/2)
Database Systems - SQL - DDL Statements (Chapter 3/2)Vidyasagar Mundroy
 
A Tour to MySQL Commands
A Tour to MySQL CommandsA Tour to MySQL Commands
A Tour to MySQL CommandsHikmat Dhamee
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL CommandsShrija Madhu
 
Sql tutorial
Sql tutorialSql tutorial
Sql tutorialamitabros
 
COMPUTERS SQL
COMPUTERS SQL COMPUTERS SQL
COMPUTERS SQL Rc Os
 
Unit_III_SQL-MySQL-Commands-Basic.pptx usefull
Unit_III_SQL-MySQL-Commands-Basic.pptx  usefullUnit_III_SQL-MySQL-Commands-Basic.pptx  usefull
Unit_III_SQL-MySQL-Commands-Basic.pptx usefullANTOARA2211003040050
 
Mysqlppt
MysqlpptMysqlppt
MysqlpptReka
 
Introducing ms sql_server_updated
Introducing ms sql_server_updatedIntroducing ms sql_server_updated
Introducing ms sql_server_updatedleetinhf
 
supporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered tablesupporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered tableMahabubur Rahaman
 

Similar to Linguagem sql (20)

Introducción rápida a SQL
Introducción rápida a SQLIntroducción rápida a SQL
Introducción rápida a SQL
 
SQL introduction
SQL introductionSQL introduction
SQL introduction
 
Database Systems - SQL - DDL Statements (Chapter 3/2)
Database Systems - SQL - DDL Statements (Chapter 3/2)Database Systems - SQL - DDL Statements (Chapter 3/2)
Database Systems - SQL - DDL Statements (Chapter 3/2)
 
A Tour to MySQL Commands
A Tour to MySQL CommandsA Tour to MySQL Commands
A Tour to MySQL Commands
 
Sql
SqlSql
Sql
 
Sql for dbaspresentation
Sql for dbaspresentationSql for dbaspresentation
Sql for dbaspresentation
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
 
New tsql features
New tsql featuresNew tsql features
New tsql features
 
Sql tutorial
Sql tutorialSql tutorial
Sql tutorial
 
Mysql Ppt
Mysql PptMysql Ppt
Mysql Ppt
 
COMPUTERS SQL
COMPUTERS SQL COMPUTERS SQL
COMPUTERS SQL
 
Unit_III_SQL-MySQL-Commands-Basic.pptx usefull
Unit_III_SQL-MySQL-Commands-Basic.pptx  usefullUnit_III_SQL-MySQL-Commands-Basic.pptx  usefull
Unit_III_SQL-MySQL-Commands-Basic.pptx usefull
 
Chapter 4 Structured Query Language
Chapter 4 Structured Query LanguageChapter 4 Structured Query Language
Chapter 4 Structured Query Language
 
SQL-MySQL-Commands-Basic.pptx
SQL-MySQL-Commands-Basic.pptxSQL-MySQL-Commands-Basic.pptx
SQL-MySQL-Commands-Basic.pptx
 
Mysqlppt
MysqlpptMysqlppt
Mysqlppt
 
My sql cheat sheet
My sql cheat sheetMy sql cheat sheet
My sql cheat sheet
 
Introducing ms sql_server_updated
Introducing ms sql_server_updatedIntroducing ms sql_server_updated
Introducing ms sql_server_updated
 
Lab
LabLab
Lab
 
Mysql cheatsheet
Mysql cheatsheetMysql cheatsheet
Mysql cheatsheet
 
supporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered tablesupporting t-sql scripts for Heap vs clustered table
supporting t-sql scripts for Heap vs clustered table
 

Recently uploaded

TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Recently uploaded (20)

TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

Linguagem sql