Guru Samy Posted 1 Years ago through
Blogs | 10 Points
Generate SQL Script option from Enterprise Manager/Management Studioselect * from information_schema.columns where table_name='table_name'
-
Guru Samy Posted 1 Years ago through Blogs | 10 Points
Following script which will extract the domain and will also count how many email addresses are there with the same domain address.declare @t table(email varchar(100))insert into @t
|