sql server - How can particular domain email ids in sql -
How can I get only @ gmail.com email addresses from a table with user email id in SQL?
< Select pre> User ID, user name, user by e-mail
< P> Try it out .. The choice clause gets the record in which gmail.com ends :)
Select from user id, user name, email like '% gmail.com' like Email
Comments
Post a Comment