I need a little help with a report I am creating. I would like to list various settings information for user accounts such as AccountID, the various "Allow" settings, home page, and any account limitations that may be assigned. My challenge is the JOIN statements that are necessary to collate information from the Accounts, Limitations, and LimitationTypes tables. For instance, I want to show that name of things like the Home Page and Account Limitation, rather than a number.
Can anyone help me with joins? I appreciate it very much.
Here is a list of fields that I want in my report:
AccountID AS UserID, AccountEnabled AS Enabled, MenuName AS MenuBar, AllowAdmin AS Admin, AllowNodeManagement AS Manage_Nodes, AllowCustomize AS Customize, AllowReportManagement AS Manage_Reports, LimitationID1 AS Limitation, HomePageViewID AS Home_Page, NodeDetailsViewID AS Node_Details_View
Accounts.LimitationID1 AS Limitation, Limitations.LimitationID AS Limitation_ID, Limitations.LimitationTypeID AS Type_ID, LimitationTypes.LimitationTypeName AS Limitation_Name