Tuesday, 27 February 2024

Student Table Creation in Oracle

create table student(roll number,name varchar2(10),address varchar2(50));
insert into student values(2,'jaggu','goa');
insert into student values(1,'chutki','u.p');
insert into student values(5,'bheem','m.p');
select *
from student;
select name
from student;
select name,address
from student;
drop table student;

There is no UNIVERSAL PERFECT RULE !

  Yes. Looking across the themes we've discussed, the main topics that seemed to frustrate you or pull you into repeated optimization w...