http://gothub.r4focoma7gu2zdwwcjjad47ysxt634lg73sxmdbkdozanwqslho5ohyd.onion/surrealdb/surrealdb
CREATE person SET birthday = < datetime > " 2007-06-22 " ,
can_drive = < future > { time ::now() > birthday + 18y }
; Easily work with unstructured or structured data, in schema-less or schema-full mode. -- Create a schemafull table DEFINE TABLE user SCHEMAFULL; -- Specify fields on the user table DEFINE FIELD name ON TABLE user TYPE object;
DEFINE FIELD name . first ON TABLE user TYPE string;
DEFINE FIELD name . last ON TABLE...