PGoCareerGoCareer prep tools
LoginSign up
  • Java
  • Python
  • AI
  • React
  • Angular
  • PHP
  • Node.js
  • SQL
  • DSA
  • HTML
  • CSS
  • JS
  • Spring
  • ML
  • MongoDB

SQL · Theory

UNHEX()()

← All stacks

Theory

174/439

UNHEX()()

UNHEX() is a MySQL string function — it takes text and returns text or a number. You use it in SELECT (and sometimes WHERE/UPDATE). It does not change stored data unless you UPDATE … SET col = UNHEX(col).

Board: SELECT UNHEX(name) FROM students; Run it. Say the result out loud. If the column is NULL, the result is often NULL — wrap with IFNULL if you need a blank instead.

String indexes in MySQL start at 1, not 0 (SUBSTR, INSTR, LEFT). NULL input often yields NULL. Try it on one row first.

Interview — name UNHEX, one argument list, one example on the students table. Don’t recite every string function.

On the example next to this theory: UNHEX()(): create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.

Exam tip

Say what UNHEX returns, then SELECT UNHEX(name) FROM students;

UNHEX()() — sample query

-- UNHEX()()
CREATE TABLE demo (
  id INTEGER PRIMARY KEY,
  label TEXT NOT NULL,
  qty INTEGER DEFAULT 0
);
INSERT INTO demo (id, label, qty) VALUES
  (1, 'alpha', 2),
  (2, 'beta', 5);
SELECT label, qty FROM demo WHERE qty >= 2 ORDER BY qty DESC;

UNHEX()(): create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.

Short notes

  • DefUNHEX() is a MySQL string function — it takes text and returns text or a number.
  • RuleSELECT UNHEX(name) FROM students;
  • TrapNULL input often yields NULL. Try it on one row first.

Questions

1

What does UNHEX do?

2

Does it UPDATE the table?

174 / 439

P

GoCareerGo

Utilities · Preparation Hub · Resume · CV · Tools — one workspace.

Workspace

DashboardProfilePreparation HubResume builderCV builderCareer planning

PDF Tools

Merge PDFSplit PDFCompress PDFImage to PDFAll toolsJobs

Image & QR

Compress ImageResize ImageQR ScannerQR GeneratorBlogIT interview prep

Company

FAQFeedbackContactPrivacyTermsSitemap

© 2026 GoCareerGo. Keep moving forward.