Example 1
Show the base64 form of one payload string
Once the payload text is stable, the last step is to encode that exact string. The resulting base64 value can then be carried into the lookup route.
Validated query Shared across supported engines.
SQL
SELECT
'c2l0ZT1zcWxjbWQ7a2V5PXN0cnVjdHVyZS1vdXRsaXZlcy1xdWVyeTtzdGVwPTc=' AS base64_text;Expected result Returned rows for the shared example.
| base64_text |
|---|
| c2l0ZT1zcWxjbWQ7a2V5PXN0cnVjdHVyZS1vdXRsaXZlcy1xdWVyeTtzdGVwPTc= |
This note is about the final payload form, not engine-specific base64 functions.