SurrealDB Docs Logo

Enter a search query

Strings

Strings can be used to store text values. All string values can include Unicode values, emojis, tab characters, and line breaks.

CREATE person SET text = 'Lorem ipsum dolor sit amet';

Strings can be created using single quotation marks, or double quotation marks.

CREATE person SET text = "Lorem ipsum dolor sit amet";

Any string in SurrealDB can include Unicode text.

CREATE person SET text = "I ❤️ SurrealDB";

Strings can also include line breaks.

CREATE person SET text = "This is over multiple lines";

Specifying data type literal values using string prefixes

Available since: v1.1.0

Overview

In SurrealQL, there are several data types for which literal values are specified using string values, with a prefix indicating the intended type for the value to be interpreted as.

Previously, in SurrealQL version 1.0, literal values of these types were simply specified using a string without any prefix, and SurrealDB would eagerly convert the strings into the relevant data type in any case where the string matched the format expected for that type. However, since SurrealQL version 2.0, strings are no longer eagerly converted into other data types. Instead, if you want to specify a literal value of one of these data types, you must explicitly use a string with the appropriate prefix.

String literal values using the s prefix

The string prefix s explicitly tells the parser that the contents of the string are just a string. Since SurrealQL version 2.0, all strings without a prefix will be plain strings. So the two versions of the same string with and wihout the s prefix in the following queries are equivalent:

RETURN "5:20"; RETURN s"5:20"; RETURN "5:20" == s"5:20";
Response
-------- Query 1 -------- '5:20' -------- Query 2 -------- '5:20' -------- Query 3 -------- true

Record ID literal values using the r prefix

The r prefix tells the parser that the contents of the string represent a record ID. The parser expects record IDs to have the following format: table_name:record ID.

Note

As of SurrealDB 2.0, without the r prefix the type of the value will be string.

Here is an example of a record ID literal value, specified using a string with the r prefix.

RETURN r"person:john";
Response
-------- Query 1 -------- person:john

In the example below, using the type::is::string() and type::is::record() functions respectively, you can check the type of the string.

RETURN type::is::string("person:john"); RETURN type::is::record("person:john"); RETURN type::is::record(r"person:john");
Response
-------- Query 1 -------- true -------- Query 2 -------- false -------- Query 3 -------- true

Datetime literal values using the d prefix

The d prefix tells the parser that the contents of the string represent a datetime. The parser expects datetime values to have a valid ISO 8601 format. Here are a few examples:

RETURN d"2023-11-28T11:41:20.262Z"; --- Sub-second precision included, timezone defaulted to UTC RETURN d"2023-11-28T11:41:20.262+04:00"; --- Sub-second precision included, timezone specified as UTC + 4:00 RETURN d"2023-11-28T11:41:20.262-04:00"; --- Sub-second precision included, timezone specified as UTC - 4:00 RETURN d"2023-11-28T11:41:20Z"; --- Sub-second precision excluded, timezone defaulted to UTC RETURN d"2023-11-28T11:41:20+04:00"; --- Sub-second precision excluded, timezone specified as UTC + 4:00
Response
-------- Query 1 -------- d'2023-11-28T11:41:20.262Z' -------- Query 2 -------- d'2023-11-28T07:41:20.262Z' -------- Query 3 -------- d'2023-11-28T15:41:20.262Z' -------- Query 4 -------- d'2023-11-28T11:41:20Z' -------- Query 5 -------- d'2023-11-28T07:41:20Z'

UUID literal values with the u prefix

The u prefix tells the parser that the contents of the string represent a uuid. The parser expects uuid values to follow the format of an UUID, ffffffff-ffff-ffff-ffff-ffffffffffff, where each non-hyphen character can be a digit (0-9) or a letter between a and f (representing a single hexadecimal digit).

RETURN u"8c54161f-d4fe-4a74-9409-ed1e137040c1";
Response
-------- Query 1 -------- u'8c54161f-d4fe-4a74-9409-ed1e137040c1'

String prefixes vs. casting

String prefixes seem outwardly similar to casting, but differ in behaviour. A string prefix is an instruction to the parser to treat an input in a certain way, whereas a cast is an instruction to the database to convert one type into another.

As a result, incorrect input with a cast will generate an error:

// Change _ to - in both examples to fix the input RETURN <uuid>"018f0e6a_9b95-7ecc-8a38-aea7bf3627dd"; RETURN <datetime>"2024_06-06T12:00:00Z";
Response
-------- Query 1 -------- "Expected a uuid but cannot convert '018f0e6a-9b95-7ecc-8a38-aea7bf3627d' into a uuid" -------- Query 2 -------- "Expected a datetime but cannot convert '2024-06-06T12:00:00' into a datetime"

But the same input using a string prefix will not even parse until the input is valid.

// Will not parse in either case until _ is changed to - RETURN u"018f0e6a_9b95-7ecc-8a38-aea7bf3627dd"; RETURN d"2024_06-06T12:00:00Z";

This also allows for immediate error messages on which part of the input is incorrect. As seen in the image below, the parser is able to inform the user that an underscore at column 18 is the issue.

A screenshot showing how a string prefix allows incorrect UUID input to be identified before a query can be run. In this case, the parser is able to inform the user that an underscore at column 18 is the issue.
© SurrealDB GitHub Discord Community Cloud Features Releases Install