Select( Ctrl+a) , Copy ( Ctrl+c ) and Run the code for practice
Select command is used to view data of the table according to user which is already created in oracle Database.
Query is:- "Select *from student where srno=" +a;
Delete command Delete the values from the table according to user which is already Exist in oracle Database.
Query is:- delete from student where srno=" +a;
Update command is using for updating the values of the table dynamically which is already Exist in oracle Database.
Query is:- update emp set ename='Tom' where eid=101
insert command is used to insert data in table by user through keyboard which is already Exist in oracle Database.
Query is:- Select *from student