

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to change order of items in MySQL?
To change order of items in MySQL, use ORDER BY alias name. Let us first create a table −
mysql> create table DemoTable653 (Product1Amount int,Product2Amount int); Query OK, 0 rows affected (0.42 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable653 values(400,250); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable653 values(500,300); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable653 values(40,400); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable653 values(200,450); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable653 values(50,20); Query OK, 1 row affected (0.10 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable653;
This will produce the following output −
+----------------+----------------+ | Product1Amount | Product2Amount | +----------------+----------------+ | 400 | 250 | | 500 | 300 | | 40 | 400 | | 200 | 450 | | 50 | 20 | +----------------+----------------+ 5 rows in set (0.00 sec)
Following is the query to change the order of items and display the difference −
mysql> select Product1Amount,Product2Amount,(Product1Amount-Product2Amount) as ProductAmountDifference from DemoTable653 order by ProductAmountDifference;
This will produce the following output −
+----------------+----------------+-------------------------+ | Product1Amount | Product2Amount | ProductAmountDifference | +----------------+----------------+-------------------------+ | 40 | 400 | -360 | | 200 | 450 | -250 | | 50 | 20 | 30 | | 400 | 250 | 150 | | 500 | 300 | 200 | +----------------+----------------+-------------------------+ 5 rows in set (0.29 sec)
- Related Questions & Answers
- How can I change the default sort order of MySQL tables?
- How to change background color of TableView items on iOS?
- How to change the order of Pandas DataFrame columns?
- How to change the background color of ListView items on Android?
- How to change the JOIN order in Oracle?
- How to change the order of plots in Pandas hist command?
- MongoDB query to change order of array elements?
- How to change the background color of ListView items on Android Kotlin?
- How to change the order of bars in bar chart in R?
- How to change the order of elements in a list in R?
- How to change the order of a matrix in increasing order based on a single column?
- How to change the order of columns in an R data frame?
- How to change the background color of ListView items on Android using Kotlin?
- How to change MySQL timezone?
- How to change the order of boxplot by means using ggplot2 in R?
Advertisements