Access particular forms from particular app using sql

Confluence User - 26 Nov, 2021

I want to access particular forms from particular app. 

for example: select tableName from app_form;

above querry giving all the table name from app but I want only particular table names from particular app.

above query is giving me all the table name. 

example: if I created app [ app name: DIGITAL ] then I want to fetch only  table names coming under DIGITAL app



server;forms

1


26 Nov, 2021
confluenceUser
1
confluenceUser

Change the app name in where clause to which ever app you are trying to access


SELECT *
FROM app_form
WHERE appId = 'appcenter'

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print