SYNTAX OF ALL SQL COMMANDS IS HERE:-
Join this channel to get access to perks:
/ @askindetail
To become member click this link friends.
SQL command in open office base create insert select update alter delete drop sql ddl dml commands
SYNTAX OF ALL SQL COMMANDS:-
create table stud(id int,name varchar(10));
insert into stud values (1,'om');
select * from STUD;
select * from STUD where ID=1;
alter table stud add marks int;
update stud set marks=11 where id=1;
alter table stud drop marks;
delete from stud where id=1;
drop table stud;