0% found this document useful (0 votes)
2 views

MySQL

MySQL is a widely used open-source relational database management system (RDBMS) developed by MySQL AB, now owned by Oracle Corporation. It supports various platforms and offers both community and enterprise editions, with features like stored procedures and triggers. While it has received positive reviews for performance and usability, it has limitations in SQL standard compliance and trigger functionality.

Uploaded by

Alok
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

MySQL

MySQL is a widely used open-source relational database management system (RDBMS) developed by MySQL AB, now owned by Oracle Corporation. It supports various platforms and offers both community and enterprise editions, with features like stored procedures and triggers. While it has received positive reviews for performance and usability, it has limitations in SQL standard compliance and trigger functionality.

Uploaded by

Alok
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

MySQL

MySQL is a relational database management system (RDBMS), it was the world's


second most widely used RDBMS, and the most widely used open-source RDBMS. It
is named after co-founder Michael Widenius's daughter, My. The SQL acronym
stands for Structured Query Language. The MySQL development project has made its
source code available under the terms of the GNU General Public License, as well as
under a variety of proprietary agreements. MySQL was owned and sponsored by a
single for-profit firm, the Swedish company MySQL AB, now owned by Oracle
Corporation. For proprietary use, several paid editions are available, and offer
additional functionality.

On all platforms except Windows, MySQL ships with no GUI tools to administer
MySQL databases or manage data contained within the databases. Users may use the
included command line tools, or install MySQL Workbench via a separate download.
Many third party GUI tools are also available.

OVERVIEW:
MySQL is written in C and C++. Its SQL parser is written in yacc, but it uses a home-
brewed lexical analyzer. MySQL works on many system platforms, including AIX,
BSDi, FreeBSD, HP-UX, eComStation, i5/OS, IRIX, Linux, OS X, Microsoft
Windows, NetBSD, Novell NetWare, OpenBSD, OpenSolaris, OS/2 Warp, QNX,
Oracle Solaris, Symbian, SunOS, SCO OpenServer, SCO UnixWare, Sanos and
Tru64. A port of MySQL to OpenVMS also exists.

The MySQL server software itself and the client libraries use dual-licensing
distribution. They are offered under GPL version 2, beginning from 28 June 2000
(which in 2009 has been extended with a FLOSS License Exception) or to use a
proprietary license.

Support can be obtained from the official manual. Free support additionally is
available in different IRC channels and forums. Oracle offers paid support via its
MySQL Enterprise products. They differ in the scope of services and in price.
Additionally, a number of third party organisations exist to provide support and
services, including SkySQL Ab and Percona.
MySQL has received positive reviews, and reviewers noticed it "performs extremely
well in the average case." and that the "developer interfaces are there, and the
documentation (not to mention feedback in the real world via Web sites and the like)
is very, very good". It has also been tested to be a "fast, stable and true multi-user,
multi-threaded sql database server".

HISTORY:
MySQL was created by a Swedish company, MySQL AB, founded by David Axmark,
Allan Larsson and Michael "Monty" Widenius. The first version of MySQL appeared
on 23 May 1995. It was initially created for personal usage from mSQL based on the
low-level language ISAM, which the creators considered too slow and inflexible.
They created a new SQL interface, while keeping the same API as mSQL. By keeping
the API consistent with the mSQL system, many developers were able to use MySQL
instead of the (proprietarily licensed) mSQL antecedent.

DEPLOYMENT:

MySQL can be built and installed manually from source code, but this can be tedious
so it is more commonly installed from a binary package unless special customizations
are required. On most Linux distributions, the package management system can
download and install MySQL with minimal effort, though further configuration is
often required to adjust security and optimization settings.

FEATUES:
MySQL is offered under two different editions: the open source MySQL Community
Server and the proprietary Enterprise Server. MySQL Enterprise Server is
differentiated by a series of proprietary extensions which install as server plugins, but
otherwise shares the version numbering system and is built from the same code base.

 Major features as available in MySQL 5.6:


 A broad subset of ANSI SQL 99, as well as extensions
 Cross-platform support
 Stored procedures, using a procedural language that closely adheres to
SQL/PSM[72]
 Triggers
 Cursors
 Updatable views
 Online DDL when using the InnoDB Storage Engine.
 Information schema
 Performance Schema
 A set of SQL Mode options to control runtime behavior, including a strict
mode to better adhere to SQL standards.

USER INTERFACE:
 Graphical user interfaces
A graphical user interface (GUI) is a type of interface that allows users to interact with
electronic devices or programs through graphical icons and visual indicators such as
secondary notation, as opposed to text-based interfaces, typed command labels or text
navigation. GUIs are easier to learn than command-line interfaces which require
commands to be typed on the keyboard.

Third-party proprietary and free graphical administration applications (or "front


ends") are available that integrate with MySQL and enable users to work with
database structure and data visually. Some well-known front ends are:

MySQL Workbench, Adminer, Database Workbench, DBEdit, dbForge Studio for


MySQL, HeidiSQL, LibreOffice Base, Navicat, OpenOffice.org, phpMyAdmin,
SQLBuddy, SQLyog

 Command-line interfaces
A command-line interface is a means of interacting with a computer program where
the user issues commands to the program by typing in successive lines of text
(command lines). MySQL ships with many command line tools, from which the main
interface is the mysql client.

 Application programming interfaces


Many programming languages with language-specific APIs include libraries for
accessing MySQL databases. These include MySQL Connector/Net for integration
with Microsoft's Visual Studio (languages such as C# and VB are most commonly
used) and the JDBC driver for Java.

LIMITATION:
Like other SQL databases, MySQL does not currently comply with the full SQL
standard for some of the implemented functionality, including foreign key references
when using some storage engines other than the default of InnoDB, and check
constraints.

Up until MySQL 5.7, triggers are limited to one per action / timing, meaning that at
most one trigger can be defined to be executed after an INSERT operation, and one
before INSERT on the same table. No triggers can be defined on views.

You might also like