Show Tables;
Show Tables From DB_Name;
select table_name as 'Udt Tables' from information_schema.tables where table_schema = 'db_name';
Isnumeric(integer_value);
Select Isnumeric('12345') As Output1 Select Isnumeric(4567) As Output2