MySql query to get all table names of a database in asp.net
Try This
SELECT table_name FROM information_schema.tables WHERE table_type = 'base table' AND table_schema='test';
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.