Logo 
Search:

Oracle Articles

Submit Article
Home » Articles » Oracle » Data Definition LangRSS Feeds

Example to insert records in student, course and SC tables

Posted By: Ava Campbell     Category: Oracle     Views: 2754

This article provides an example to insert records in student, course and SC tables.

Code for Example to insert records in student, course and SC tables in Oracle

insertinto student values
(
'&rollno','&name','&class','&birthdate'
);


insertinto course values
(
'&courseno','&coursename',&max_marks,&pass_marks
)


insertinto sc values
(
'&rollno','&courseno',&marks
);
  
Share: 



Ava Campbell
Ava Campbell author of Example to insert records in student, course and SC tables is from Toronto, Canada.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!