to the left you will have the listing of tables:
Notice the "eye" to the right. This is similar to the right click in SQL where you can select the top 1,000 records only this will normally only pull the top 50 records for you understand the data.
Now that you are ready to query, let's query to find all our Deployment plans and then grab all the machines that are set to be in the pilot group, either via the global pilot that was recommended and you added them:
(MADeploymentPlan)
Should you have too many then use the following query
MADeploymentPlan
| limit 50
| limit 50
Find the machines in there pilot. But only show the columns for the Device name, Family, Source and Pilot Status
MAProposedPilotDevices
| where DeploymentPlanId == "881ba*******************56c"
| project DeviceName , DeviceFamily, Source, PilotStatus
Pilot Status. = Is in the the pilot, recall you can exclude or replace with other machines.
Source is interesting because if necessary you can now export this list and add it to the Collection in ConfigMgr and your pilot for upgrades or any other pilot would be more efficient.
Since there is no export function in DA we are here with this list.
At the top of your query
You can now export this to a CSV...but WAIT THERE'S MORE!!!
Notice that is gives you the Power BI query too! So you can pull in and manipulate it also!!!