You are on page 1of 1

* Linklist topic

*Hash map
*link list
*Array
*exceotion handling
*opps concept
*database
*String handling
*Collection
*
*2D array

Sql queries :-

insert into student(ID , NAME, AGE) values (202 , 'Reem' , 25)


select * from student
select * from student where age > 30
update student set age = 22 where age = 24;
SELECT * FROM `student` WHERE name = 'RAM'
select * from student where name like '%m';
DELETE FROM `student` WHERE name = 'RAM';

You might also like