SQL (Structured Query Language) is a programming language that enables users to interact with relational databases such as MySQL. It provides a standardized way to manage, manipulate, and retrieve data stored in a MySQL database. SQL allows users to perform various operations on the database, including creating, modifying, and deleting tables, as well as inserting, updating, and retrieving data.
To interact with a MySQL database using SQL, users can execute SQL statements through a variety of means. One common method is through the command-line interface (CLI) provided by MySQL. By opening a terminal or command prompt and connecting to the MySQL server, users can enter SQL statements directly into the CLI. For example, to create a new table named "employees" with columns for "id", "name", and "salary", the following SQL statement can be executed:
CREATE TABLE employees ( id INT PRIMARY KEY, name VARCHAR(50), salary DECIMAL(10, 2) );
Once the table is created, data can be inserted into it using the `INSERT INTO` statement. For instance, to add a new employee with an ID of 1, name "John Doe", and a salary of 50000, the following SQL statement can be used:
INSERT INTO employees (id, name, salary) VALUES (1, 'John Doe', 50000);
To retrieve data from the database, the `SELECT` statement is used. For example, to retrieve all employees from the "employees" table, the following SQL statement can be executed:
SELECT * FROM employees;
This will return all rows and columns from the "employees" table.
SQL also allows users to update existing data using the `UPDATE` statement. For instance, to update the salary of the employee with ID 1 to 60000, the following SQL statement can be used:
UPDATE employees SET salary = 60000 WHERE id = 1;
Furthermore, SQL provides the ability to delete data using the `DELETE` statement. For example, to delete the employee with ID 1 from the "employees" table, the following SQL statement can be executed:
DELETE FROM employees WHERE id = 1;
In addition to the CLI, SQL can be executed within programming languages that support database connectivity, such as PHP. This allows developers to dynamically generate SQL statements and interact with the MySQL database from within their PHP code. For example, using the MySQLi extension in PHP, the following code snippet demonstrates how to connect to a MySQL database, execute a SELECT statement, and retrieve the results:
php
<?php
$servername = "localhost";
$username = "root";
$password = "password";
$dbname = "mydatabase";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Execute SELECT statement
$sql = "SELECT * FROM employees";
$result = $conn->query($sql);
// Process and display results
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
echo "ID: " . $row["id"] . ", Name: " . $row["name"] . ", Salary: " . $row["salary"] . "<br>";
}
} else {
echo "No results found.";
}
// Close connection
$conn->close();
?>
This PHP code establishes a connection to the MySQL server, executes the SELECT statement to retrieve all rows from the "employees" table, and displays the results in a formatted manner.
SQL allows users to interact with a MySQL database by providing a standardized language for managing, manipulating, and retrieving data. It can be executed through the MySQL command-line interface or within programming languages that support database connectivity, such as PHP. SQL statements can be used to create and modify database structures, insert and update data, retrieve data based on specific criteria, and delete data from the database.
Other recent questions and answers regarding EITC/WD/PMSF PHP and MySQL Fundamentals:
- What is the recommended approach for accessing and modifying properties in a class?
- How can we update the value of a private property in a class?
- What is the benefit of using getters and setters in a class?
- How can we access the value of a private property in a class?
- What is the purpose of making properties private in a class?
- What is a constructor function in PHP classes and what is its purpose?
- What are methods in PHP classes and how can we define their visibility?
- What are properties in PHP classes and how can we define their visibility?
- How do we create an object from a class in PHP?
- What is a class in PHP and what purpose does it serve?
View more questions and answers in EITC/WD/PMSF PHP and MySQL Fundamentals

