DataBase: An organized collection of information or data.
SQL:
SQL:
- It stands for Standard Query Language.
- It is a standard language used to communicate with databases.
- It is used to update, delete, input the data into a database.
- It is used to perform tasks on a database.
- Ex: SELECT * FROM Customers(It selects all the data related Customers table in the database)
- It is a Relational Database Management System(RDBMS).
- It provides a platform(UI) for the user to access and interact with the database.
- There are many kinds of RDMS and MySQL is one of them.
- Other RDBMS available are:
- PostgreSQL
- Oracle
- SQL Server
- RDBMS is a collection of data organized into tables.
- Tables contain different columns and rows of different categories.
- If there are two tables where the information in one table is related to information in another table, then these two tables are relational and management of these two tables is called a relational Database management system.
Comments
Post a Comment