PHP MySQL Use ORDER BY

Select and Order Data From a MySQL Database

Choose and arrange information from a MySQL database

The ORDER BY clause is used to put the results in ascending or descending order.

By default, the ORDER BY clause puts the records in order from least to most. Use the DESC keyword to sort the records from most important to least important.

SELECT columnname(s) FROM tablename ORDER BY columnname(s) ASC|DESC

Visit our SQL tutorial to learn more about SQL.

Select and Order Data With MySQLi

MySQL lets you choose and sort data.

In the next example, the student table\’s id, firstname, and lastname columns are chosen. The last name column will be used to sort the records:

Example

<?php
$servername = \”localhost\”;
$username = \”username\”;
$password = \”password\”;
$dbname = \”school\”;

// Create connection
$link = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$link) {
die(\”Connection failed: \” . mysqli_connect_error());
}

$sql = \”SELECT id, firstname, lastname FROM student ORDER BY lastname\”;
$result = mysqli_query($link, $sql);

if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
echo \”id: \” . $row[\”id\”]. \” – Name: \” . $row[\”firstname\”]. \” \” . $row[\”lastname\”]. \”<br>\”;
}
} else {
echo \”0 results\”;
}

mysqli_close($link);
?>

Output

id: 3 – Name: ajay das
id: 1 – Name: ram lal
id: 2 – Name: shyam lal

Related Posts
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

Hypertext Preprocessor (PHP) is a programming language that lets web developers make dynamic content that works with databases. PHP is Read more

Introduction of PHP

PHP started out as a small open source project that grew as more and more people found out how useful Read more

Syntax Overview of PHP

This chapter will show you some of PHP\'s very basic syntax, which is very important for building a strong PHP Read more

Environment Setup in PHP

To develop and run PHP on your computer, you need to instal three important parts. Web server PHP can almost Read more

Variable Types in PHP

Using a variable is the main way to store information in the middle of a PHP program. Here are the Read more

Scroll to Top