MYSQL
MYSQL
What is MySQL?
• MySQL is a relational database management system
• MySQL is open-source
• MySQL is free
• MySQL is ideal for both small and large applications
• MySQL is very fast, reliable, scalable, and easy to use
• MySQL is cross-platform
• MySQL is compliant with the ANSI SQL standard
• MySQL was first released in 1995
• MySQL is developed, distributed, and supported by Oracle Corporation
• MySQL is named after co-founder Monty Widenius's daughter: My
What is RDBMS?
RDBMS stands for Relational Database Management System. RDBMS is a program used
to maintain a relational database. RDBMS is the basis for all modern database systems
such as MySQL, Microsoft SQL Server, Oracle, and Microsoft Access. RDBMS uses SQL
queries to access the data in the database
SELECT Syntax: SELECT * FROM table_name; =>selects ALL the columns from the table
The WHERE clause is used to filter records. It is used to extract only those records that
fulfill a specified condition.
SQL requires single quotes around text values however numeric values should not be
enclosed within quotes.
The following operators can be used in the WHERE clause: =, >, <, >=, <=, <>(or)!=,
BETWEEN, LIKE, IN