ARAmuthasathya Rajendiraninmysqlbasics.hashnode.dev·Jan 7, 2025 · 1 min readChanging User passwordAfter creating a user account, the next step is learning how to change the password. Changing passwords is necessary to ensure the security of the database system. There are three methods to change the password. One of these three statements can be u...00
ARAmuthasathya Rajendiraninmysqlbasics.hashnode.dev·Jan 5, 2025 · 2 min readCreating and removing users on MySQLCreating users The CREATE USER command is important in MySQL for creating new user accounts that can access the database. The database administrators use this command to define which users are authorized to connect to the MySQL server and specify the...00
ARAmuthasathya Rajendiraninmysqlbasics.hashnode.dev·Jan 4, 2025 · 1 min readIntroduction to MySQLMySQL is an open-source relational database management system (RDBMS) developed by Oracle Corporation. It uses Structured Query Language (SQL) for database management. MySQL is widely used for various applications, from small websites to large-scale ...00
ARAmuthasathya Rajendiraninmysqlbasics.hashnode.dev·Jan 3, 2025 · 2 min readRelational Data Base Management SystemRDBMS is based on the relational data model, which stores data in the form of rows(tuple) and columns(attributes). These rows and columns together form a table(relation). A relational database uses SQL for storing, manipulating, as well as maintainin...00
ARAmuthasathya Rajendiraninmysqlbasics.hashnode.dev·Jan 2, 2025 · 1 min readData Base Management SystemsData Base Management System is a software that is used to store and fetch information stored in the database. DBMS allows us to perform various operations on the data like creation, reading, updating, deletion etc. DBMS can also be used by the user t...00