How Add Percentage In Number With Sql Commands
- Selected Reading
- UPSC IAS Exams Notes
- Developer'southward Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add a percentage (%) sign at the end to each value while using MySQL SELECT statement
To add percentage sign at the stop, use CONCAT() function. Permit us first create a table −
mysql> create table DemoTable ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY Primal, StudentName varchar(100), StudentScore int ); Query OK, 0 rows affected (0.68 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable(StudentName,StudentScore) values('John',65); Query OK, 1 row afflicted (0.09 sec) mysql> insert into DemoTable(StudentName,StudentScore) values('Chris',98); Query OK, 1 row affected (0.30 sec) mysql> insert into DemoTable(StudentName,StudentScore) values('Robert',91); Query OK, 1 row affected (0.09 sec)
Brandish all records from the table using select statement −
mysql> select *from DemoTable;
This volition produce the following output −
+-----------+-------------+--------------+ | StudentId | StudentName | StudentScore | +-----------+-------------+--------------+ | i | John | 65 | | ii | Chris | 98 | | 3 | Robert | 91 | +-----------+-------------+--------------+ 3 rows in set (0.00 sec)
Following is the query to add a percentage (%) sign to each value at the end while using MySQL SELECT statement −
mysql> select StudentId,StudentName,concat(StudentScore,'%') AS StudentScore from DemoTable;
This will produce the following output −
+-----------+-------------+--------------+ | StudentId | StudentName | StudentScore | +-----------+-------------+--------------+ | 1 | John | 65% | | 2 | Chris | 98% | | 3 | Robert | 91% | +-----------+-------------+--------------+ iii rows in prepare (0.00 sec)
Published on 26-Sep-2019 06:56:34
- Related Questions & Answers
- How to use a select argument while updating in MySQL?
- How to sort a particular value at the cease in MySQL?
- Add a character in the finish to cavalcade values with MySQL SELECT?
- How to add static value while INSERT INTO with SELECT in a MySQL query?
- Remove only the percentage sign from values in a MySQL table?
- Storing value from a MySQL SELECT argument to a variable?
- Using the value of an allonym inside the same MySQL SELECT statement
- How to remove pct sign at final position from every value in R data frame column?
- Select the maximum for each value in a MySQL table?
- MySQL case argument inside a select statement?
- Alter value from i to Y in MySQL Select Argument using CASE?
- How to select render value from MySQL prepared statement?
- Add elements at the end of a Vector in Coffee
- Modify value from 1 to Y in MySQL Select Statement?
- Find the percent of a student on ground of marks and add together percent sign (%) to the upshot in SQL
How Add Percentage In Number With Sql Commands,
Source: https://www.tutorialspoint.com/add-a-percentage-sign-at-the-end-to-each-value-while-using-mysql-select-statement
Posted by: bradshawmighthe.blogspot.com
0 Response to "How Add Percentage In Number With Sql Commands"
Post a Comment