Презентация Database. Database management system MySQL онлайн

На нашем сайте вы можете скачать и просмотреть онлайн доклад-презентацию на тему Database. Database management system MySQL абсолютно бесплатно. Урок-презентация на эту тему содержит всего 19 слайдов. Все материалы созданы в программе PowerPoint и имеют формат ppt или же pptx. Материалы и темы для презентаций взяты из открытых источников и загружены их авторами, за качество и достоверность информации в них администрация сайта не отвечает, все права принадлежат их создателям. Если вы нашли то, что искали, отблагодарите авторов - поделитесь ссылкой в социальных сетях, а наш сайт добавьте в закладки.
Презентации » Информатика » Database. Database management system MySQL



Оцените!
Оцените презентацию от 1 до 5 баллов!
  • Тип файла:
    ppt / pptx (powerpoint)
  • Всего слайдов:
    19 слайдов
  • Для класса:
    1,2,3,4,5,6,7,8,9,10,11
  • Размер файла:
    609.50 kB
  • Просмотров:
    76
  • Скачиваний:
    2
  • Автор:
    неизвестен



Слайды и текст к этой презентации:

№1 слайд
Database. Database management
Содержание слайда: Database. Database management system MySQL.

№2 слайд
Learning objectives describe
Содержание слайда: Learning objectives describe relational databases and their use use the terms attribute, entity, index record, table and tuple to describe databases

№3 слайд
Success criteria knows and
Содержание слайда: Success criteria knows and understands the purpose of using the database can provide examples of the database knows the types of the database can describe a relational, network, and hierarchical database knows the main elements of the database knows and understands the purpose of using MySQL

№4 слайд
A database is a collection of
Содержание слайда: A database is a collection of information that is organized so that it can be easily accessed, managed and updated. A database is a collection of information that is organized so that it can be easily accessed, managed and updated. Types of the databases: network, hierarchical and relational. Database Management System (DBMS) software that allows users to create, maintain, and query your data in the related tables. (Oracle, DB2, MySQL).

№5 слайд
Hierarchical model This model
Содержание слайда: Hierarchical model This model presents data to users in a hierarchy of data elements that can be represented in a sort of inverted tree. In a sales order processing system, a customer may have many invoices raised to him and each invoice may have dif­ferent data elements. Thus, the root level of data is customer, the second level is invoice and the last level is line items such as in­voice number, date, product, quantity, etc.

№6 слайд
Network model In the network
Содержание слайда: Network model: In the network model of database, there are no levels and a record can have any number of owners and also can have ownership of several records.

№7 слайд
Relational model The most
Содержание слайда: Relational model: The most recent and popular model of data­base design is the relational database model. In relational database, data is organized into tables.

№8 слайд
Main database objects Tables
Содержание слайда: Main database objects Tables – Data collection objects Queries – Questions of your data Forms – Predefined format to display or enter data Reports – Printable version of database information

№9 слайд
Main objects Field attribute
Содержание слайда: Main objects Field (attribute): a single piece of information. Could be a name, or a number. Record (Row): a collection of related fields. A number of pieces of information that relate to the same object. Records on an employee, their name, address, social security number, phone number, etc. This would be the employee’s record. Table (entity): a collection of related records. If you put all the employee records together, you have a table of employees.

№10 слайд
MySQL is an open source
Содержание слайда: MySQL is an open source relational database management system (RDBMS) based on Structured Query Language (SQL).  MySQL is an open source relational database management system (RDBMS) based on Structured Query Language (SQL). 

№11 слайд
SQL Commands SQL commands are
Содержание слайда: SQL Commands: SQL commands are instructions, coded into SQL statements, which are used to communicate with the database to perform specific tasks, work, functions and queries with data. SQL commands are grouped into four major categories depending on their functionality: Data Definition Language (DDL) Data Manipulation Language (DML) Transaction Control Language (TCL) Data Control Language (DCL)

№12 слайд
Data Definition Language DDL
Содержание слайда: Data Definition Language (DDL) - These SQL commands are used for creating, modifying, and dropping the structure of database objects. The commands are CREATE, ALTER, DROP, RENAME, and TRUNCATE. Data Definition Language (DDL) - These SQL commands are used for creating, modifying, and dropping the structure of database objects. The commands are CREATE, ALTER, DROP, RENAME, and TRUNCATE. Data Manipulation Language (DML) - These SQL commands are used for storing, retrieving, modifying, and deleting data.  These Data Manipulation Language commands are: SELECT, INSERT, UPDATE, and DELETE.

№13 слайд
Transaction Control Language
Содержание слайда: Transaction Control Language (TCL) - These SQL commands are used for managing changes affecting the data. These commands are COMMIT, ROLLBACK, and SAVEPOINT. Transaction Control Language (TCL) - These SQL commands are used for managing changes affecting the data. These commands are COMMIT, ROLLBACK, and SAVEPOINT. Data Control Language (DCL) - These SQL commands are used for providing security to database objects. These commands are GRANT and REVOKE.

№14 слайд
SQL Create DataBase SQL
Содержание слайда: SQL Create DataBase SQL Create DataBase CREATE DATABASE database_name SQL Alter DataBase The ALTER DATABASE Statement is used to change characteristics of a database. ALTER DATABASE database_name [COLLATE collation_name ] SQL Drop DataBase The DROP DATABASE Statement is used to drop or delete a database. Dropping of the database will drop all database objects (tables, views, procedures etc.) inside it. DROP DATABASE database_name;

№15 слайд
SQL CREATE TABLE SQL CREATE
Содержание слайда: SQL CREATE TABLE SQL CREATE TABLE CREATE TABLE table_name  (column_name1 datatype,  column_name2 datatype,  ... column_nameN datatype  ); CREATE TABLE employee  ( id number(5),  name char(20),  dept char(10),  age number(2),  salary number(10),  location char(10)  );

№16 слайд
SQL ALTER TABLE Statement SQL
Содержание слайда: SQL ALTER TABLE Statement SQL ALTER TABLE Statement The SQL ALTER TABLE command is used to modify the definition (structure) of a table by modifying the definition of its columns. The ALTER command is used to perform the following functions. 1) Add, drop, modify table columns  2) Add and drop constraints  3) Enable and Disable constraints

№17 слайд
Local server XAMPP XAMPP is a
Содержание слайда: Local server XAMPP XAMPP is a free and open source cross-platform web server solution stack package developed by Apache Friends, consisting mainly of the Apache HTTP Server, MySQL(M), database, and interpreters for scripts written in the PHP and Perl programming languages. XAMPP stands for Cross-Platform, XMP (X), Apache (A), MySQL(M), PHP (P) and Perl (P).

№18 слайд
Click Apache MySQL Start.
Содержание слайда: Click Apache – MySQL – Start. Where MYSQL click Admin. You can see next localhost site

№19 слайд
http
Содержание слайда: http://beginner-sql-tutorial.com/sql-commands.htm http://beginner-sql-tutorial.com/sql-commands.htm

Скачать все slide презентации Database. Database management system MySQL одним архивом: