0% found this document useful (0 votes)
5 views2 pages

DBMS Practical Experiments

The document outlines a practical experiment for creating a table and inserting data in a database management system. It includes SQL code to create a 'Students' table with fields for RollNo, Name, Age, and Course, and demonstrates inserting three records into the table. The aim is to teach users how to perform these basic database operations.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

DBMS Practical Experiments

The document outlines a practical experiment for creating a table and inserting data in a database management system. It includes SQL code to create a 'Students' table with fields for RollNo, Name, Age, and Course, and demonstrates inserting three records into the table. The aim is to teach users how to perform these basic database operations.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

DBMS Practical File

Experiment 1: CREATE TABLE and INSERT DATA

Aim:
To learn how to create a table and insert values into it.

SQL Code:
CREATE TABLE Students (
RollNo INT PRIMARY KEY,
Name VARCHAR(50),
Age INT,
Course VARCHAR(50)
);

INSERT INTO Students VALUES


(1, 'Aman', 20, 'BCA'),
(2, 'Neha', 21, 'BCA'),
(3, 'Ravi', 22, 'BCA');

Output:

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy