Hi Nigel, unless you specifically select out the
_id value when writing your query, you won't see it. This means going through an
Open card you will not see the
_id field in a
Preview Table. If you want to see the
_id value, you have to use a
Query card with code similar to the following:
select
`_id`
, topic_name
from
`/mount/db/topics`
That being said, the value is accessible to you in queries, even though we don't show it by default when running queries.
Hopefully this helps.