0

I want to fetch the size of my table in Salesforce using a CData driver.

Saqib Ali
  • 3,953
  • 10
  • 55
  • 100

1 Answers1

0

if you want number of rows, you can use the COUNT as follows:

select count(*) FROM Account
Saqib Ali
  • 3,953
  • 10
  • 55
  • 100