1
0
-1

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



    CommentAdd your comment...

    1 answer

    1.  
      3
      2
      1

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


      SELECT *
      FROM app_form
      WHERE appId = 'appcenter'

        CommentAdd your comment...