Download presentation
Presentation is loading. Please wait.
1
SQL Data Modification Statements
2
SQL: Modifications Inserting new data (2 methods)
Insert Into Table Values(A1,A2,…,An) Insert Into Table Select-Statement
3
SQL: Modifications Deleting existing data
Delete From Table Where Condition
4
SQL: Modifications Updating existing data Update Table
Set Attr = Expression Where Condition
5
SQL: Modifications Updating existing data
Update Table Set A1=Expr1,A2=Expr2,…,An=Exprn Where Condition Demo: simple college admissions database College(cName,state,enrollment) Student(sID,sName,GPA,sizeHS) Apply(sID,cName,major,decision)
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.