database
table
data
je languegediye softowre ke bojhabo
show databases;
create database mysql_june_batch;
use mysql_june_batch;
show tables;
create table student_table(
roll_no int primary key not null,
full_name varchar(30) not null,
address varchar(30) not null,
phone_no int not null);
describe student_table;
select * from student_table;
insert into student_table
values (1,"ram","add-1",7865);
insert into student_table
values (2,"sam","add-1",4578);
update student_table
set address="karanjali",phone_no=2000
where roll_no=2;
select * from student_table;
delete from student_table
where roll_no=1;