You are on page 1of 1

 create table analytics (

 task_id INT primary key,


 name varchar(50)
 );
 drop table analytics;
 ALter table student add task varchar(20);
 ALter table student drop column task;
 Insert into student values(1, 'saira');
update student;

 update student
set name = 'sara'
where ids = 1;

 delete from student where ids = 1;

You might also like