
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Get Maximum from a Column Value in MySQL
Let us first create a table −
mysql> create table DemoTable ( FirstName varchar(100), Score int ); Query OK, 0 rows affected (0.60 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable values('David',59); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('Chris',97); Query OK, 1 row affected (0.24 sec) mysql> insert into DemoTable values('Bob',98); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('Carol',91); Query OK, 1 row affected (0.11 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
This will produce the following output −
+-----------+-------+ | FirstName | Score | +-----------+-------+ | David | 59 | | Chris | 97 | | Bob | 98 | | Carol | 91 | +-----------+-------+ 4 rows in set (0.00 sec)
Following is the query to get maximum from a column value and set it for all other values in the same column −
mysql> select FirstName,(select max(Score) from DemoTable) as Score from DemoTable;
This will produce the following output −
+-----------+-------+ | FirstName | Score | +-----------+-------+ | David | 98 | | Chris | 98 | | Bob | 98 | | Carol | 98 | +-----------+-------+ 4 rows in set (0.00 sec)
Advertisements