O/p: 1 Row(s) Updated
O/p: 1 Row(s) Updated
1. CREATE:
Syntax: Create table <Tablename> (Field1 Datatype1, Field2 Datatype2..
Field n Datatype n);
Eg: Create Table EMP(Name varchar2(10), Age integer, Salary Integer);
O/P: Table created.
2. INSERT:
Syntax: Insert Into <tablename> values ( Value1, Value2, ..Valuen);
Eg INSERT INTO EMP VALUES( rvind,20, 200);
O/P: 1 row(s) inserted.
3. UPDATE:
Sysntax: UPDATE <TableName> set <fieldname>=<New Value>
Eg: update emp set name=Mahantesh
Conditional Update:
Update emp set name=MahanteshWHERE Age=1;
o/p: 1 Row(s) Updated.
4. Delete:
5. DROP:
ALTER:
EG: ALTER TABLE EMP MODIFY NAME VARCHAR(10); DATATYPE CHANGED FROM VARCHAR2(10)
TO VARCHAR(10)