- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the method with the help of which the hexadecimal value can be treated as a number?
For treating the hexadecimal value as a number, we can use the CAST(… AS UNSIGNED) function. Following example will demonstrate it −
mysql> Select 0x54, CAST(0x54 AS UNSIGNED); +------+------------------------+ | 0x54 | CAST(0x54 AS UNSIGNED) | +------+------------------------+ | T | 84 | +------+------------------------+ 1 row in set (0.01 sec)
- Related Articles
- Which MySQL query can be used with the help of which we can see the list of MySQL databases?
- What is the default type of a hexadecimal value in MySQL?
- Describe with the help of a diagram an instrument which can be used to detect a charged body.
- What is the synonym statement of SHOW DATABASES with the help of which we can see the list of MySQL databases?
- What is the use of the VALUE function in a DB2? Explain with the help of an example
- (a) Name the method by which bread mould (Rhizopus fungus) reproduces. Is this method sexual or asexual?(b) What is yeast? Describe the process of reproduction in yeast with the help of labelled diagrams.(c) Name a tiny fresh-water animal which reproduces by the same method as that of yeast? What is this method known as?(d) Name two marine organisms which also reproduce by the same method as yeast but form colonies.
- The method of preparing compost with the help of earthworms is calledcompostingvermicompostingmanuringdecomposing
- What is the maximum number of electrons which can be accommodated in the K shell of an atom?
- What is the maximum number of electrons which can be accommodated in the L shell of an atom?
- Can tonsils be treated at home?
- How can INTERSECTION between tables be implemented with the help of MySQL joins?
- How DIFFERENCES between tables can be implemented with the help of MySQL joins?
- What are the two ways in which cow-dung can be used as a fuel? Which of them is better and why?
- What is the name of the indicator which can be used for testing the pH of a solution?
- Name and describe briefly a method which can be helpful in separating a mixture of husk from grains. What is the principle of this method?

Advertisements