Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
32 views
Level2 It Database
Uploaded by
anoopsam115
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Level2 It Database (1) For Later
Download
Save
Save Level2 It Database (1) For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
32 views
Level2 It Database
Uploaded by
anoopsam115
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Level2 It Database (1) For Later
Carousel Previous
Carousel Next
Save
Save Level2 It Database (1) For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 4
Search
Fullscreen
DATABASE MANAGEMENT What is Database? A database is an organized collection of data. It is evolved in the year 1960. What is Database Management System? Or What is DBMS? Give Examples. ‘A database management system is a software package with computer programs that controls the creation, maintenance, and use of a database. EX: Open Office Database, MySQL, FoxPro, and SQLite. How data can be organised ? Data can be organized into two types: 1) Flat File 2). Relational Flat File: Data is stored in a single table. Usually suitable for less,amount)of data. Relational: Data is stored in multiple tables and the tables are linked using a common field, Relational is suitable for medium to large amountoof data. What does DBMS stands for? —_Data Base Management System. Exapand RDBMS? Who introduced RDBMS? RDBMS refers to Relational Database Management Sistemiit iSintrotiuced by E. F. Codd. ‘Why do we need RDBMS? Or How is data organized in a RDBMS? In the relational model of a database, all data is Fepresented in terms of tuples, grouped into relations. A database organized intterms of the relational model is a relational database. The purpose Ofithe rélatidnal model is to provide a declarative method for specifying data and)queries. How data is organised in RDBMS? Data in a relational database Management system (RDBMS) is organized in the form of tables, What do you mean bya table is RDBMS? A table is a set of data elements (values) that is organized using a model of vertical columns (which are Identified by their name) and horizontal rows. ‘What do you mean by a’column/fields in RDBMS? Give example A column is a set oftdata values of a particular simple type, one for each row of the table. Example: cFirstName, or cLastName are fields in a row 10) What do you mean by a row in RDBMS? Give example ‘row als6 called a record or tuple represents a single, data item in a table. Each row ina table represents a set of related data, and every row in the table has the same structure. Example: cFirstName, or clastName are fields ina row 11) What do you mean by data types ? List the data types used in a DBMS /RDBMS? Datatypes are used to identify which type of data (value) we are going to store in the database.Data types in OpenOffice base is broadly classified into five categories. 1) Numeric Types 2) Alphanumeric Types 3)Binary Types 4) Date time 5) Other Variable types 12) What do you mean by Numeric data types? List data types available in Numeric Datatype. 25 Pag rikamba High SchooNumeric data types are used for describing numeric values for the field used in the table of a database. Numeric data types are used for storing information such as mobile number, roll number,etc,. Types: BOOLEAN (yes/no), INTEGER(integer), FLOAT(float), NUMERIC(number). 13) What do you mean by Alpha-numeric data types? List data types available in Alpha-numeric data type. Alpha-numeric data types are used for describing alpha-numeric values for the field used in the table of a database.Alpha-numeric data types are used for storing information such as PAN card number ete,. Types: CHAR, VARCHAR 14) What do you mean by Binary data types? List datatypes available in Data type. Binary data types are used for storing data in binary formats. Types: BINARY,image 15) What do you mean by Date Time data types? List datatypes available in Date Time Data type. Date time data types are used for describing dat@ and timé)valuies for the field used in the table of a database. Example: date of birth, date of admission Types: Date, Time 16) What do you mean by other data types? List datatypes available in Other Data type. The other data types are used to in¢lude Java Objects. Example: Java Objects. Types: Other/object 17) State the relationship and diffetence between a primary and foreign key? A primary key is a unique valuethat identifies a row in a table. Foreign key identifies.a columinor set of columns in one (referencing) table that refers to a column or set Of columns in another (referenced) table. 18) List two typesof languages used in Database. 1, Data Definition Language (DDL) 2. (Data\Manipulation Language (DML) 19) What do you meamby DDL? Give Examples. A data definition language (DDL) is a standard for commands that define the different Structures in a database. DDL statements create, modify, and remove database objects such as tables, indexes, and users. Example: CREATE, ALTER, and DROP. 20) What do you mean by DML? Give Examples. A data manipulation language (DML is a language that enables users to access and manipulate data in a database. Example: SELECT,INSERT, DELETE & UPDATE. 21) Explain about DML commands or Explain the following. SELECT statement-Retrieval of information from the database. INSERT statement-Insertion of new information into the database. DELETE statement-Deletion of information in the database. UPDATE statement-Modification of information in the database. 26 Pag rikamba High Schoo22) What is SQL? Why do we need it? Structured Query Language (SQL) is a popular data manipulation language. This is Used to retrieve and manipulate data in a relational database. 23) What are the two types of DML? 1) Procedural DML: the user specifies what data is needed and how to get it, 2) Nonprocedural DML: the user only specifies what data is needed. This is easier for the user but may not generate code as efficient as that produced by procedural languages, 24) What is the file extension for databases created using OpenOffice.Org Base? * odb where * is filename and odb refers to object data base. 25) What do you mean by Filtering ? Filtering means that the query uses criteria user provide it to hide Some’data and present only what user want to see. 26) Explain the various types of SELECT statements available in database. A SELECT statement retrieves zero or more rows from, onelor More database tables or database views. The SELECT statement has many optional clatises: A) Simple Select Statement ex: SELECT * FROM TABLENAME; B) WHERE specifies which rows to retrieve, EX: SELECT * FROM TABLENAME WHERE FIELDNAME= VALUE; C)_ ORDER BY specifies an Otder in, which to return the rows. EX: SELECT * FROM TABLENAME ORDER BY "FIELDNAME" ASC/DESC; 27) Explain various data types available in database. Datatypes are used to.identify which type of data (value) we are going to store in the database, ‘Numeric Types: Numeric) data types are used for describing numeric values ex: mobile number. *Binary.-Types:Biharydata types are used for storing data in binary formats ex:music files. Date time:Date time data types are used for describing date and time values. ex: Date of birth. “AlphaNumeric Typesilt is used to store data which includes both aplhabets and ‘numbers. ex: PAN card number. 28) What is an INSERT statement? Write its syntax and example. INSERT statement is used to add one or more records to a database. The Syntax is: INSERT INTO table (column2, column2, column3 ...) VALUES (value1, value2,value3 ..) Example: insert into "SDetails" ("10" Rollno") values ('8', Ranjith Singh’, 67"); 29) Mention the uses of the following #s évnwajrty evziokecrinvss, 5¢% a) Insert statement sa*#0t, Z¢1s*sbou b) Update Statement eardeut fetsrshour ©) Delete statement agew gerebow d) Create statement gabe deutcbowr INSERT: INSERT statement is used to add one or more records to a database. 27 Pag rikamba High SchooUPDATE: UPDATE statement is used for modifying records in a database, DELETE: DELETE Statement is used to remove one or more records in a database. CREATE: CREATE statement is used for creating a database or a table in any RDBMS Software. Fill in the blanks: 1. A database is an organized collection of data, 2. A DBMS is a software package that can be used for creating and managing databases. 3. A RDBMS is a database management system that is based on the relational model. 4. Three popular DBMS software are Oracle, MySQL, & SQLite. 5. A table is a set of data elements that is organized using a model of vertical colurtins and horizontal rows. 6. A column is a set of data values of a particular simple type, one fof tach row Of the table. 7. A row represents a single, data item in a table. 8. Data types are used to identify which type of data we are going t6'store in'the database. 9. A Primary Key is a unique value that identifies a row in a table. 10.Types of languages used for creating and manipulating the data ifthe database are Data Definition Language(DDL) & Data manipulatiomLanguage(DML). 11. A Data Definition Language(DDL) is a standard\for comifiamds that define the different structures in a database. 12. A Data manipulation Language(DMb)is a language that enables users to access and manipulate data in a database. 13, A Query Language is a part of DML inyol¥ing information retrieval only. 14, A popular data manipulation language is Structured Query Language (SQL). 14. Common DDL statements are CREATE, ALTER, and DROP. 15. Tables are the basic building blocks of a database. 16, Users can store the data in the database in the form of tables, 17, To design a table, you necdito select Create Table in Design View option available under Task. 18. A form helps theuseF to systematically store information in the database. 19. A foram enables usets:to view, enter, and change data directly in database object8\suchvas'tables: 20STo.créate a form you need to select Forms option available under Database section. 21.A QuéFy helps to collect specific information from the pool of data in the database. 22. SELECT statement retrieves zero or more rows from one or more database tables or database views. 23. INSERT statement is used to add one or more records to a database. 24. UPDATE statement is used for modifying records in a database. 25, DELETE statement is used to remove one or more records in a database. 26. CREATE statement is used for creating a database or a table in any RDBMS Software. 27. A Report is used to generate the overall work outcome in a clear format. 28. To create reports you need to select Use Wizard to Create Report... option available under Tasks. 2B [Poe rikamba High Schoo
You might also like
03 Database Management System Important Questions Answers
PDF
71% (7)
03 Database Management System Important Questions Answers
6 pages
Database Management System Important Questions Answers
PDF
No ratings yet
Database Management System Important Questions Answers
35 pages
03 Database Management System Important Questions Answers
PDF
No ratings yet
03 Database Management System Important Questions Answers
35 pages
Database Notes
PDF
100% (1)
Database Notes
38 pages
Unit - 3 Realtional Database Management System
PDF
No ratings yet
Unit - 3 Realtional Database Management System
35 pages
Questions DBMS
PDF
No ratings yet
Questions DBMS
17 pages
Uniy-3 imp ques
PDF
No ratings yet
Uniy-3 imp ques
4 pages
Unit 3 Relational Database Management Systems
PDF
No ratings yet
Unit 3 Relational Database Management Systems
5 pages
DBMS
PDF
No ratings yet
DBMS
4 pages
Class 10 I.T. Practical File
PDF
No ratings yet
Class 10 I.T. Practical File
30 pages
Unit 3 RDBMS - 5 Sessions Notes
PDF
No ratings yet
Unit 3 RDBMS - 5 Sessions Notes
7 pages
Database Development (Basic)
PDF
No ratings yet
Database Development (Basic)
5 pages
DBMS
PDF
No ratings yet
DBMS
6 pages
DBMS-notes
PDF
No ratings yet
DBMS-notes
14 pages
Database
PDF
No ratings yet
Database
5 pages
Class10_ICT_P2U3_DBMS
PDF
No ratings yet
Class10_ICT_P2U3_DBMS
7 pages
10 Iti
PDF
No ratings yet
10 Iti
3 pages
RDBMS Final Notes For Board Exam
PDF
100% (1)
RDBMS Final Notes For Board Exam
13 pages
Database Management Short Notes
PDF
No ratings yet
Database Management Short Notes
5 pages
Chapter - RDBMS (Basic) Class 10
PDF
No ratings yet
Chapter - RDBMS (Basic) Class 10
6 pages
Database Management System_Question and Answers
PDF
No ratings yet
Database Management System_Question and Answers
7 pages
Relational Database Management System 10 Notes
PDF
No ratings yet
Relational Database Management System 10 Notes
6 pages
DBMS Notes Class 10
PDF
No ratings yet
DBMS Notes Class 10
12 pages
03 Database Management System Important Questions Answers
PDF
No ratings yet
03 Database Management System Important Questions Answers
35 pages
CLASS X_DATABASE_NOTES
PDF
No ratings yet
CLASS X_DATABASE_NOTES
5 pages
03-database-management-system-important-questions-answers (1)
PDF
No ratings yet
03-database-management-system-important-questions-answers (1)
35 pages
Class X Information Technology Code402 - Unit3 - Important - QA
PDF
No ratings yet
Class X Information Technology Code402 - Unit3 - Important - QA
5 pages
03 Database Management System Important Questions Answers
PDF
No ratings yet
03 Database Management System Important Questions Answers
36 pages
03-database-management-system-important-questions-answers (1)
PDF
No ratings yet
03-database-management-system-important-questions-answers (1)
35 pages
Libre-Dbase
PDF
No ratings yet
Libre-Dbase
6 pages
SQL 1
PDF
No ratings yet
SQL 1
4 pages
DBMS
PDF
No ratings yet
DBMS
8 pages
Database Management System
PDF
No ratings yet
Database Management System
5 pages
Database Management System
PDF
No ratings yet
Database Management System
8 pages
Vaibahav Rai Class-10th Database Management System
PDF
No ratings yet
Vaibahav Rai Class-10th Database Management System
18 pages
DBMS Solution Bank (2M)
PDF
No ratings yet
DBMS Solution Bank (2M)
22 pages
Class 8 Dbms
PDF
No ratings yet
Class 8 Dbms
3 pages
7th Jan 2023 - Database Testing - Mangesh Sir
PDF
No ratings yet
7th Jan 2023 - Database Testing - Mangesh Sir
62 pages
Database Management System
PDF
No ratings yet
Database Management System
9 pages
DBMS Questions
PDF
No ratings yet
DBMS Questions
14 pages
Unit 7 DataBase
PDF
100% (1)
Unit 7 DataBase
5 pages
Database Management System
PDF
No ratings yet
Database Management System
5 pages
Unit 3 - DBMS - Ques Bank With Answers
PDF
No ratings yet
Unit 3 - DBMS - Ques Bank With Answers
16 pages
Database Alter Records Oracle Corporation Entity: Module 3-DATABASE (NOTES) Learning Objective
PDF
No ratings yet
Database Alter Records Oracle Corporation Entity: Module 3-DATABASE (NOTES) Learning Objective
4 pages
Relational Database Management Systems-Basic
PDF
No ratings yet
Relational Database Management Systems-Basic
29 pages
2 - Review DDL and DML
PDF
No ratings yet
2 - Review DDL and DML
53 pages
DBMS Notes (23-24)
PDF
No ratings yet
DBMS Notes (23-24)
18 pages
Wa0014.
PDF
No ratings yet
Wa0014.
6 pages
Dbms Study Material
PDF
No ratings yet
Dbms Study Material
12 pages
UNIT 5 - Database Management System
PDF
No ratings yet
UNIT 5 - Database Management System
21 pages
Database and SQL-2020
PDF
No ratings yet
Database and SQL-2020
19 pages
Rdbms - One Shot
PDF
No ratings yet
Rdbms - One Shot
67 pages
DBMS & SQL
PDF
100% (1)
DBMS & SQL
109 pages
CamScanner 02-28-2023 13.34
PDF
No ratings yet
CamScanner 02-28-2023 13.34
32 pages
Part B-DBMS_question_anwers
PDF
No ratings yet
Part B-DBMS_question_anwers
5 pages
IT Project RYTHAM
PDF
No ratings yet
IT Project RYTHAM
16 pages
ICT Unit 3 Notes - G12
PDF
100% (1)
ICT Unit 3 Notes - G12
5 pages
Assignment 1
PDF
No ratings yet
Assignment 1
9 pages