If you want to find SQL Column that dose not start with Numbers of Numeric here is the Query.
Select Address From Corporation
where Address Not LIKE '[0-9]%';
If you want to find SQL Column that start with Numbers of Numeric here is the Query.
Select Address from Corporation
where Address LIKE '[0-9]%';