Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: CLASS12-IP-CH -5(PART1). PDF
Description: Ip handwritten notes of class 12

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


CLASS XII
INFORMATICS PRACTICES(065)
Ch 5: MySQL REVISION TOUR
INTRODUCTION:
Database is a structured, organised collection or set of data held in a computer and a database
system is a computer based record keeping system
...

▪ Reduced updates on Errors and Increase Consistency
...

▪ Improved Data Sharing and better-managed data allow business to make quality business
decisions which will promote the growth of the organization
...

▪ it provides a strong framework for Data backup
...

The relational data model organized the ata into tables known as relation and maintain a
relationship with other values
...

• Relation: Relation (collection of rows and columns) on which we can perform various
operations
...

• Field: Set of characters that represents specific data element
...
A record can have fields of different data
types
...

• Table: Collection of rows and columns that contains useful data/information is called a
table
...
It is also known as record
...
It is also termed as field or data
item
...

• Cardinality: Number of tuples in a relation is called cardinality of a relation
...
This key can never be duplicated and NULL
...
This key is used to enforce referential integrity
in RDBMS
...

• Alternate Key: All the candidate keys other than the primary key of a relation are
alternate keys for a relation
...


Example: Relation: Student
AdNo
Name
Class Section
Average
101
Anu
12
A
85
...
7
203
Leena
11
B
95
...
32
305
Surpreeth
9
C
70
...
0
Fields (Attributes/Columns):- AdNo, Name, Class, Section and Average
...

Cardinality: 6 (Number of rows)
Primary key : AdNo
Alternate key: Name

2

Referential Integrity:
 A referential integrity constraint is specified between two tables
...
In other words, any foreign key field must agree
with the primary key that is referenced by the foreign key
...

 In the Referential integrity constraints, if a foreign key in Table 1 refers to the Primary
Key of Table 2, then every value of the Foreign Key in Table 1 must be null or be
available in Table 2
...
mysql
...

Provides features that support secure environment for storing, maintaining and accessing
data
...

3

 Create and supported by MySQL AB, a company based in Sweden
...
On April 2009 Oracle Corp
...

 The chief inventor of MySQL was Michael Widenius(a
...
a Monty)
...
The logo of MySQL is dolphin and name of that
dolphin is ‘Sakila’
...

 It operates using Client/Server architecture in which the server runs on the machine
containing the database and client connects to server over a network
 MySQL is a multiuser database system, meaning several users can access the database
simultaneously
MySQL and SQL(Structured Query Language) :
SQL is a non procedural language that is used to create, manipulate and process the
databases(relations)
...

MySQL is a popular Relational Database Management System(RDBMS) , freely available and
open source that uses SQL
...
mysql
...

Classification of SQL Statements:
1
...
e
...

2
...
e
...

3
...
The commonly used commands in TCL are COMMIT, ROLLBACK, and
SAVEPOINT
...

Data types of SQL: Just like any other programming language, the facility of defining data of
various types is available in SQL also
...
g
...
g
...
g
...
g ‘2001-02-02’
4

Operators in SQL:
The following are the commonly used operators in SQL
1
...
Relational Operators =, , <=,>=,<>
3
Title: CLASS12-IP-CH -5(PART1). PDF
Description: Ip handwritten notes of class 12