dqMan Proprietary Statements
Select statement extensions
Selecting all queryable fields
SELECT * FROM user__sys;
SELECT * FROM group__sys;
SELECT * FROM binder_node__sys;Counting the objects in a query:
SELECT count(*) FROM documents WHERE type__v = 'Clinical' Caching the query results in a local table:
SELECT
id,
major_version_number__v,
minor_version_number__v,
name__v,
title__v,
document_number__v,
type__v,
subtype__v,
classification__v,
status__v,
document_creation_date__v,
version_creation_date__v,
version_modified_date__v,
created_by__v,
version_created_by__v,
last_modified_by__v,
lifecycle__v,
state_stage_id__sys,
global_id__sys,
filename__v ,
clinical_study__v,
product__v
FROM
documents
WHERE
type__v = 'Clinical'
INTO local_clinical;Querying local tables by using the full SQLite syntax
DESCRIBE command
Function
What It Is
Describing object and document relations:
Describing document and object fields:
Last updated
Was this helpful?
