If you only want Cobi to access specific tables, grant permissions selectively:
Copy
-- Grant access to specific tables onlyGRANT SELECT ON your_database.customers TO 'cobi_reader'@'%';GRANT SELECT ON your_database.transactions TO 'cobi_reader'@'%';FLUSH PRIVILEGES;