
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Set numbers as a varchar field and compare in MySQL
Let us first create a table −
mysql> create table DemoTable -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentScore varchar(100) -> ); Query OK, 0 rows affected (0.66 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable(StudentScore) values('90'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable(StudentScore) values('100'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable(StudentScore) values('56'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable(StudentScore) values('98'); Query OK, 1 row affected (0.13 sec)
Display all records from the table using select statement −;
mysql> select *from DemoTable;
Output
+-----------+--------------+ | StudentId | StudentScore | +-----------+--------------+ | 1 | 90 | | 2 | 100 | | 3 | 56 | | 4 | 98 | +-----------+--------------+ 4 rows in set (0.00 sec)
Here is the query to compare in varchar fields −
mysql> select *from DemoTable where CAST(StudentScore AS SIGNED) > 91;
Output
+-----------+--------------+ | StudentId | StudentScore | +-----------+--------------+ | 2 | 100 | | 4 | 98 | +-----------+--------------+ 2 rows in set (0.00 sec)
- Related Articles
- Can we compare numbers in a MySQL varchar field?
- How to set a string with hyphen and numbers in MySQL varchar?
- How to display highest value from a string with numbers set as varchar in MySQL?
- Delete last value and fix two new values (VARCHAR Numbers) in MySQL declared as VARCHAR?
- Convert from varchar to datetime and compare in MySQL?
- Sorting varchar field numerically in MySQL?
- Getting the maximum value from a varchar field in MySQL
- Searching for an integer value in a varchar field in MySQL?
- Order VARCHAR records with string and numbers in MySQL
- Compare only day and month with date field in MySQL?
- Count the number of occurrences of a string in a VARCHAR field in MySQL?
- MySQL query to remove numbers after hyphen in a VARCHAR string with numbers
- Searching BETWEEN dates stored as varchar in MySQL?
- Order by date set with varchar type in MySQL
- Is there a way to convert Integer field into Varchar without losing data in MySQL?

Advertisements