Equivalent of MySQL HEX / UNHEX function in SQL Server?

MATH000

Does SQL Server has an equivalent to the HEX and UNHEX MySQl functions?

Shnugo

What are you going to do?

Something like a script generation?

There might be better approaches for your issue, but you do not provide many details...

Not quite as slim but this would work

--This will show up like needed, but it will not be a string
SELECT CAST('abc' AS VARBINARY(MAX))

--this is the string equivalent
SELECT sys.fn_varbintohexstr(CAST('abc' AS VARBINARY(MAX)));

--This will turn the string equivalent back to varbinary
SELECT sys.fn_cdc_hexstrtobin('0x616263')

--And this will return the original string
SELECT CAST(sys.fn_cdc_hexstrtobin('0x616263') AS VARCHAR(MAX));

One hint

If you deal with UNICODE you can check the changes if you set N'abc' instead of 'abc' and in den final line you'd have to convert '0x610062006300' to NVARCHAR.

Another hint

If you need this more often you might put this into an UDF, than it is as eays as with MySQL :-)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Equivalent of MySQL HEX / UNHEX function in SQL Server?

From Dev

What is the PHP equivalent of MySQL's UNHEX()?

From Dev

SQL Server equivalent of substring_index function in MySQL

From Dev

SQL Server equivalent of substring_index function in MySQL

From Dev

MySQL - using LIKE operator with UNHEX() function

From Dev

How do I perform MySQL UNHEX() Function in Java

From Dev

SQL Server equivalent of Excel's TINV function

From Dev

SQL Server equivalent of Excel's TINV function

From Dev

MySql Equivalent of Sql Server Database Project

From Dev

Is there an equivalent in MS SQL Server to the <=> operator in MySQL?

From Dev

Is there an equivalent MYSQL "LIMIT" Clause in SQL Server?

From Dev

SQL Server Variable Value By Row (MySQL := Equivalent)

From Dev

SQL Server - any equivalent of Excel's CHOOSE function?

From Dev

SQL Server datetime convert function equivalent to postgresql (pivotal hawq)

From Dev

SQL Server LEAD Equivalent Function in MS Access 2016

From Dev

MYSQL date_format '%x-%u' equivalent in SQL Server

From Dev

'master..sysdatabases' SQL Server syntax equivalent in MySQL

From Dev

SQL Server equivalent of Trunc

From Dev

SQL SERVER equivalent of a HashMap?

From Dev

Equivalent to NULL in SQL Server

From Dev

Python-Sqlalchemy Binary Column Type HEX() and UNHEX()

From Dev

Python-Sqlalchemy Binary Column Type HEX() and UNHEX() with autoloaded table

From Dev

PHP function to convert HEX char codes to display equivalent

From Dev

Is there an equivalent for mysql DATE() function in mongodb?

From Dev

sql server GO equivalent in oracle

From Dev

SQL Server : RowVersion equivalent in Oracle

From Dev

Is Contains Equivalent To Like In SQL Server

From Dev

Equivalent of Materialised Views in SQL Server

From Dev

NuoDB Equivalent to SQL Server CTE

Related Related

  1. 1

    Equivalent of MySQL HEX / UNHEX function in SQL Server?

  2. 2

    What is the PHP equivalent of MySQL's UNHEX()?

  3. 3

    SQL Server equivalent of substring_index function in MySQL

  4. 4

    SQL Server equivalent of substring_index function in MySQL

  5. 5

    MySQL - using LIKE operator with UNHEX() function

  6. 6

    How do I perform MySQL UNHEX() Function in Java

  7. 7

    SQL Server equivalent of Excel's TINV function

  8. 8

    SQL Server equivalent of Excel's TINV function

  9. 9

    MySql Equivalent of Sql Server Database Project

  10. 10

    Is there an equivalent in MS SQL Server to the <=> operator in MySQL?

  11. 11

    Is there an equivalent MYSQL "LIMIT" Clause in SQL Server?

  12. 12

    SQL Server Variable Value By Row (MySQL := Equivalent)

  13. 13

    SQL Server - any equivalent of Excel's CHOOSE function?

  14. 14

    SQL Server datetime convert function equivalent to postgresql (pivotal hawq)

  15. 15

    SQL Server LEAD Equivalent Function in MS Access 2016

  16. 16

    MYSQL date_format '%x-%u' equivalent in SQL Server

  17. 17

    'master..sysdatabases' SQL Server syntax equivalent in MySQL

  18. 18

    SQL Server equivalent of Trunc

  19. 19

    SQL SERVER equivalent of a HashMap?

  20. 20

    Equivalent to NULL in SQL Server

  21. 21

    Python-Sqlalchemy Binary Column Type HEX() and UNHEX()

  22. 22

    Python-Sqlalchemy Binary Column Type HEX() and UNHEX() with autoloaded table

  23. 23

    PHP function to convert HEX char codes to display equivalent

  24. 24

    Is there an equivalent for mysql DATE() function in mongodb?

  25. 25

    sql server GO equivalent in oracle

  26. 26

    SQL Server : RowVersion equivalent in Oracle

  27. 27

    Is Contains Equivalent To Like In SQL Server

  28. 28

    Equivalent of Materialised Views in SQL Server

  29. 29

    NuoDB Equivalent to SQL Server CTE

HotTag

Archive