My sql query for select all databases except system databases
I have made asp.net application which communicate MySQL using c# as code behind.I need MySQL query or custom function which gives me list of databases except system databases name.
SHOW DATABASES;
SELECT schema_name
FROM information_schema.schemata;