How to get info from a SQL Data Base?

I need to get some info from a particular table in a SQL DATA BASE.

Thanks!

@username_uipath

For this install UiPath.Database package

Use Connect Activity to establish your connection or you can give the connection string
Use Execute Query activity → Use Sql Query as Select * from TableName-> This data will store in a datatable
Using ForEach row activity you can loop into datatable

Check below

Hope this helps you

Thanks