The following sections discuss Query of Queries functionality. If you know SQL or have interacted with databases, you might be familiar with some of these features.
ColdFusion supports using dot notation in table names.
If a structure named A contains a field named B, which contains a table named Products, you can refer to the table with dot notation, as follows:
SELECT tape_ID, length FROM A.B.Products;