SlideShare a Scribd company logo
1 of 22
What is SQL?
Structured Query Language
Communicate with databases
Used to created and edit databases.
Also used to create queries, forms, and reports
Table Basics
A Table is an object
Database data is stored in Tables
Each table has a unique name
Columns have various attributes, such as column
name and data type
Rows contain records or data for the columns
Weather Sample Table
City State High Low
Phoenix Arizona 105 90
Tuscon Arizona 101 92
Flagstaff Arizona 88 69
San Diego California 77 60
Albuquerque New Mexico 80 60
Selecting Data
The Select statement is used to get data which
matches the specified criteria. Here is the basic
syntax:
ex)
select “columnname1”, “columnname2”
from “tablename”
where “condition”
Conditions Used In Where Clause
= equals
> greater than
< less than
>= greater than or equal to
<= less than or equal to
<> not equal to
Like
Used to make complex searching easy. If you are trying
to find all people’s names which begin with E for
example:
ex) select firstname from employee
where firstname LIKE 'E%';
Creating Tables
The statement to use is create table
Here is the syntax:
create table “tablename”
(“columnname”, “datatype”,
“columnname2”, “datatype”,
“columnname3”, “datatype”);
Creating content for Tables
Here is a real example:
create table employee
(first varchar(15),
last varchar(20),
age number(3),
address varchar(30),
city varchar(20),
state varchar(20));
Creating Tables – Variables
If you took algebra then y=2x might be familiar. y
and x are unknown information, which is a variable.
Now a string is a bunch of letters and numbers
A number is a bunch of numbers
A data type determines what a variable can hold, i.e.
strings or numbers
Creating Tables – Data Types cont’d
number(size) - a number value that can not exceed,
size columns, for example if you have size = 10, then
you can only have 10 different digit places, like
1,000,000,000
date - date value
number(size,d) - This works the same as the regular
number except d represents # of columns after the
decimal.
Creating Tables - Constraints
A constraint is a rule.
Some examples constraints are:
• unique - no two entries will be the same
• not null - no entry can be blank
• **primary key - unique identification of each row**
• primary keys will be very important to you as your
knowledge of databases progresses
Inserting Information into Tables
To insert into tables you need only use the
keyword insert. Here is the syntax:
insert into "tablename"
(“first_column”, ..., “last_column”)
values (“first_value”, ...,“last value”);
Inserting Information into Tables
Here is a practical example:
insert into employees
(first, last, age, address, city, state)
values ( 'Luke', 'Duke', 45, '2130 Boars Nest',
'Hazard Co', 'Georgia');
Inserting Information into Tables Steps
**All strings should be enclosed by single
quotes: 'string'**
1. Use the keyword "insert into" followed by the
tablename
2. Then on the next line, in parenthesis, list all the
columns you are inserting values for.
3. Then on the line after, type values, then in
parenthesis, put the values in the same order as
the columns they belong to
Updating Records
To update records use the "update" statement.
Here is the syntax:
update “tablename”
set “columnname” = “newvalue”,
“nextcolumn” = “newvalue2”, ...
where “columnname” OPERATOR
“value” and|or “columnname2 OPERATOR “value”
Updating Records cont’d
Here are some practical examples:
ex)
update phone_book
set area_code = 623
where prefix = 979;
This changes the area code all numbers
beginning with 979 to 623
Updating Records cont’d
update phone_book
set last_name = 'Smith', prefix=555, sufix=9292
where last_name = 'Jones';
This changes everyone whose last name is Jones
to Smith and their number to 555-9292
Deleting Records
Here is the syntax:
delete from “tablename”
where “columnname” OPERATOR “value”
and|or “columnname2” OPERATOR “value”
Deleting Records Examples
ex) delete from employees;
deletes all records from that table
ex) delete from employee
where lastname='May';
deletes all records for people whose last name is
May
ex) delete from employee
where firstname='Mike' or firstname='Eric';
deletes all records for anyone whose first name is Mike
or Eric
Deleting Tables
Use the drop command
drop table "tablename";
drop table employees;
Bye Bye Table, Hello Corporate Espoinage =)
Oracle training in Tambaram
http://www.trainingintambaram.in

More Related Content

What's hot

Import Data using R
Import Data using R Import Data using R
Import Data using R Rupak Roy
 
Sql Basics | Edureka
Sql Basics | EdurekaSql Basics | Edureka
Sql Basics | EdurekaEdureka!
 
Stata Cheat Sheets (all)
Stata Cheat Sheets (all)Stata Cheat Sheets (all)
Stata Cheat Sheets (all)Laura Hughes
 
Null values, insert, delete and update in database
Null values, insert, delete and update in databaseNull values, insert, delete and update in database
Null values, insert, delete and update in databaseHemant Suthar
 
Using ddl statements to create and manage tables
Using ddl statements to create and manage tablesUsing ddl statements to create and manage tables
Using ddl statements to create and manage tablesSyed Zaid Irshad
 
DATABASE MANAGMENT SYSTEM (DBMS) AND SQL
DATABASE MANAGMENT SYSTEM (DBMS) AND SQLDATABASE MANAGMENT SYSTEM (DBMS) AND SQL
DATABASE MANAGMENT SYSTEM (DBMS) AND SQLDev Chauhan
 
Sql queries - Basics
Sql queries - BasicsSql queries - Basics
Sql queries - BasicsPurvik Rana
 
Database Management - Lecture 2 - SQL select, insert, update and delete
Database Management - Lecture 2 - SQL select, insert, update and deleteDatabase Management - Lecture 2 - SQL select, insert, update and delete
Database Management - Lecture 2 - SQL select, insert, update and deleteAl-Mamun Sarkar
 

What's hot (19)

Import Data using R
Import Data using R Import Data using R
Import Data using R
 
Sql Basics | Edureka
Sql Basics | EdurekaSql Basics | Edureka
Sql Basics | Edureka
 
Stata Cheat Sheets (all)
Stata Cheat Sheets (all)Stata Cheat Sheets (all)
Stata Cheat Sheets (all)
 
Null values, insert, delete and update in database
Null values, insert, delete and update in databaseNull values, insert, delete and update in database
Null values, insert, delete and update in database
 
Introduction to-sql
Introduction to-sqlIntroduction to-sql
Introduction to-sql
 
Sql.pptx
Sql.pptxSql.pptx
Sql.pptx
 
Sqlbysandeep
SqlbysandeepSqlbysandeep
Sqlbysandeep
 
Lab1 select statement
Lab1 select statementLab1 select statement
Lab1 select statement
 
SQL
SQLSQL
SQL
 
SQL
SQLSQL
SQL
 
Using ddl statements to create and manage tables
Using ddl statements to create and manage tablesUsing ddl statements to create and manage tables
Using ddl statements to create and manage tables
 
DATABASE MANAGMENT SYSTEM (DBMS) AND SQL
DATABASE MANAGMENT SYSTEM (DBMS) AND SQLDATABASE MANAGMENT SYSTEM (DBMS) AND SQL
DATABASE MANAGMENT SYSTEM (DBMS) AND SQL
 
Sql queries - Basics
Sql queries - BasicsSql queries - Basics
Sql queries - Basics
 
Database Management - Lecture 2 - SQL select, insert, update and delete
Database Management - Lecture 2 - SQL select, insert, update and deleteDatabase Management - Lecture 2 - SQL select, insert, update and delete
Database Management - Lecture 2 - SQL select, insert, update and delete
 
Array
ArrayArray
Array
 
Array
ArrayArray
Array
 
Msql query
Msql queryMsql query
Msql query
 
Chapter 4 Structured Query Language
Chapter 4 Structured Query LanguageChapter 4 Structured Query Language
Chapter 4 Structured Query Language
 
Sql Document in Testing
Sql Document in TestingSql Document in Testing
Sql Document in Testing
 

Similar to Sql tables

MS SQL Server 1
MS SQL Server 1MS SQL Server 1
MS SQL Server 1Iblesoft
 
ADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsg
ADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsgADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsg
ADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsgzmulani8
 
Class XII-UNIT III - SQL and MySQL Notes_0.pdf
Class XII-UNIT III - SQL and MySQL Notes_0.pdfClass XII-UNIT III - SQL and MySQL Notes_0.pdf
Class XII-UNIT III - SQL and MySQL Notes_0.pdfrohithlingineni1
 
Ppt INFORMATIVE PRACTICES for class 11th chapter 14
Ppt INFORMATIVE PRACTICES for class 11th chapter 14Ppt INFORMATIVE PRACTICES for class 11th chapter 14
Ppt INFORMATIVE PRACTICES for class 11th chapter 14prashant0000
 
SQL (Basic to Intermediate Customized 8 Hours)
SQL (Basic to Intermediate Customized 8 Hours)SQL (Basic to Intermediate Customized 8 Hours)
SQL (Basic to Intermediate Customized 8 Hours)Edu4Sure
 
Database development coding standards
Database development coding standardsDatabase development coding standards
Database development coding standardsAlessandro Baratella
 
Intro to SQL by Google's Software Engineer
Intro to SQL by Google's Software EngineerIntro to SQL by Google's Software Engineer
Intro to SQL by Google's Software EngineerProduct School
 

Similar to Sql tables (20)

SImple SQL
SImple SQLSImple SQL
SImple SQL
 
SQL report
SQL reportSQL report
SQL report
 
MS SQL Server 1
MS SQL Server 1MS SQL Server 1
MS SQL Server 1
 
ADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsg
ADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsgADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsg
ADBMS unit 1.pdfsdgdsgdsgdsgdsgdsgdsgdsg
 
Class XII-UNIT III - SQL and MySQL Notes_0.pdf
Class XII-UNIT III - SQL and MySQL Notes_0.pdfClass XII-UNIT III - SQL and MySQL Notes_0.pdf
Class XII-UNIT III - SQL and MySQL Notes_0.pdf
 
SQL PPT.pptx
SQL PPT.pptxSQL PPT.pptx
SQL PPT.pptx
 
unit 1 ppt.pptx
unit 1 ppt.pptxunit 1 ppt.pptx
unit 1 ppt.pptx
 
Ppt INFORMATIVE PRACTICES for class 11th chapter 14
Ppt INFORMATIVE PRACTICES for class 11th chapter 14Ppt INFORMATIVE PRACTICES for class 11th chapter 14
Ppt INFORMATIVE PRACTICES for class 11th chapter 14
 
SQL (Basic to Intermediate Customized 8 Hours)
SQL (Basic to Intermediate Customized 8 Hours)SQL (Basic to Intermediate Customized 8 Hours)
SQL (Basic to Intermediate Customized 8 Hours)
 
Db1 lecture4
Db1 lecture4Db1 lecture4
Db1 lecture4
 
ADV PPT 2 LAB.pptx
ADV PPT 2 LAB.pptxADV PPT 2 LAB.pptx
ADV PPT 2 LAB.pptx
 
Sql 2006
Sql 2006Sql 2006
Sql 2006
 
Module 3
Module 3Module 3
Module 3
 
Database development coding standards
Database development coding standardsDatabase development coding standards
Database development coding standards
 
Sql
SqlSql
Sql
 
Intro to SQL by Google's Software Engineer
Intro to SQL by Google's Software EngineerIntro to SQL by Google's Software Engineer
Intro to SQL by Google's Software Engineer
 
012. SQL.pdf
012. SQL.pdf012. SQL.pdf
012. SQL.pdf
 
unit-5 sql notes.docx
unit-5 sql notes.docxunit-5 sql notes.docx
unit-5 sql notes.docx
 
Dbms sql-final
Dbms  sql-finalDbms  sql-final
Dbms sql-final
 
Dbms
DbmsDbms
Dbms
 

Recently uploaded

How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 

Recently uploaded (20)

Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 

Sql tables

  • 1.
  • 2. What is SQL? Structured Query Language Communicate with databases Used to created and edit databases. Also used to create queries, forms, and reports
  • 3. Table Basics A Table is an object Database data is stored in Tables Each table has a unique name Columns have various attributes, such as column name and data type Rows contain records or data for the columns
  • 4. Weather Sample Table City State High Low Phoenix Arizona 105 90 Tuscon Arizona 101 92 Flagstaff Arizona 88 69 San Diego California 77 60 Albuquerque New Mexico 80 60
  • 5. Selecting Data The Select statement is used to get data which matches the specified criteria. Here is the basic syntax: ex) select “columnname1”, “columnname2” from “tablename” where “condition”
  • 6. Conditions Used In Where Clause = equals > greater than < less than >= greater than or equal to <= less than or equal to <> not equal to
  • 7. Like Used to make complex searching easy. If you are trying to find all people’s names which begin with E for example: ex) select firstname from employee where firstname LIKE 'E%';
  • 8. Creating Tables The statement to use is create table Here is the syntax: create table “tablename” (“columnname”, “datatype”, “columnname2”, “datatype”, “columnname3”, “datatype”);
  • 9. Creating content for Tables Here is a real example: create table employee (first varchar(15), last varchar(20), age number(3), address varchar(30), city varchar(20), state varchar(20));
  • 10. Creating Tables – Variables If you took algebra then y=2x might be familiar. y and x are unknown information, which is a variable. Now a string is a bunch of letters and numbers A number is a bunch of numbers A data type determines what a variable can hold, i.e. strings or numbers
  • 11. Creating Tables – Data Types cont’d number(size) - a number value that can not exceed, size columns, for example if you have size = 10, then you can only have 10 different digit places, like 1,000,000,000 date - date value number(size,d) - This works the same as the regular number except d represents # of columns after the decimal.
  • 12. Creating Tables - Constraints A constraint is a rule. Some examples constraints are: • unique - no two entries will be the same • not null - no entry can be blank • **primary key - unique identification of each row** • primary keys will be very important to you as your knowledge of databases progresses
  • 13. Inserting Information into Tables To insert into tables you need only use the keyword insert. Here is the syntax: insert into "tablename" (“first_column”, ..., “last_column”) values (“first_value”, ...,“last value”);
  • 14. Inserting Information into Tables Here is a practical example: insert into employees (first, last, age, address, city, state) values ( 'Luke', 'Duke', 45, '2130 Boars Nest', 'Hazard Co', 'Georgia');
  • 15. Inserting Information into Tables Steps **All strings should be enclosed by single quotes: 'string'** 1. Use the keyword "insert into" followed by the tablename 2. Then on the next line, in parenthesis, list all the columns you are inserting values for. 3. Then on the line after, type values, then in parenthesis, put the values in the same order as the columns they belong to
  • 16. Updating Records To update records use the "update" statement. Here is the syntax: update “tablename” set “columnname” = “newvalue”, “nextcolumn” = “newvalue2”, ... where “columnname” OPERATOR “value” and|or “columnname2 OPERATOR “value”
  • 17. Updating Records cont’d Here are some practical examples: ex) update phone_book set area_code = 623 where prefix = 979; This changes the area code all numbers beginning with 979 to 623
  • 18. Updating Records cont’d update phone_book set last_name = 'Smith', prefix=555, sufix=9292 where last_name = 'Jones'; This changes everyone whose last name is Jones to Smith and their number to 555-9292
  • 19. Deleting Records Here is the syntax: delete from “tablename” where “columnname” OPERATOR “value” and|or “columnname2” OPERATOR “value”
  • 20. Deleting Records Examples ex) delete from employees; deletes all records from that table ex) delete from employee where lastname='May'; deletes all records for people whose last name is May ex) delete from employee where firstname='Mike' or firstname='Eric'; deletes all records for anyone whose first name is Mike or Eric
  • 21. Deleting Tables Use the drop command drop table "tablename"; drop table employees; Bye Bye Table, Hello Corporate Espoinage =)
  • 22. Oracle training in Tambaram http://www.trainingintambaram.in