For the complete documentation index, see llms.txt. This page is also available as Markdown.

byteswapLong

This section contains reference documentation for the byteswapLong function.

Reverses the byte order of a long value. Useful for converting between big-endian and little-endian representations.

Signature

byteswapLong(col)

Argument
Type
Description

col

LONG

Long value to reverse

Returns: LONG

Usage Examples

SELECT byteswapLong(longCol) AS value
FROM myTable

Last updated

Was this helpful?