Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6792395
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:57:50+00:00 2026-05-26T17:57:50+00:00

I have 2 select statements: SELECT DISTINCT Email FROM dbo.Customers WHERE (Email IS NOT

  • 0

I have 2 select statements:

SELECT DISTINCT Email
FROM         dbo.Customers
WHERE     (Email IS NOT NULL) 
AND (Email LIKE '%@%') 
AND (RIGHT(Email, 4) IN ('.net', '.com', '.org')) 
AND (Email NOT LIKE '%@UniformCity.com') 
AND (Email NOT LIKE '%@LifeUniform.com') 
AND (CHARINDEX('.',Email) <> 1)
AND (RIGHT(RTRIM(Email), 1) <> '.') AND (LEFT(LTRIM(Email), 1) <> '@') 
AND (Email not Like '%[`:;_*-,^[^]()+%\/=#-]%' escape '^') order by Email

AND

SELECT  replace(replace(
replace(
replace(EmailOptOut,'"','')
, ',held','')
, ',unsub','')
, ',confirm','') 
as CleanEmail
FROM [LifeMail].[dbo].[EmailOptOuts]

I only want to select the emails from the Customers table, THAT ARE NOT in the EmailOptOuts table. What’s the best way to achieve this? I thought about using cursors and looping…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:57:51+00:00Added an answer on May 26, 2026 at 5:57 pm

    I’m going to put these tables into temp tables, but you could combine the queries if you desired.

    SELECT DISTINCT Email
    INTO    #tCustomersEmail
    FROM    dbo.Customers
    WHERE   ( Email IS NOT NULL )
        AND ( Email LIKE '%@%' )
        AND ( RIGHT(Email, 4) IN ( '.net', '.com', '.org' ) )
        AND ( Email NOT LIKE '%@UniformCity.com' )
        AND ( Email NOT LIKE '%@LifeUniform.com' )
        AND ( CHARINDEX('.', Email) <> 1 )
        AND ( RIGHT(RTRIM(Email), 1) <> '.' )
        AND ( LEFT(LTRIM(Email), 1) <> '@' )
        AND ( Email NOT LIKE '%[`:;_*-,^[^]()+%\/=#-]%' ESCAPE '^' )
    ORDER BY Email
    
    SELECT  REPLACE(REPLACE(REPLACE(REPLACE(EmailOptOut, '"', ''), ',held', ''),',unsub', ''), ',confirm', '') AS CleanEmail
    INTO #tOptOuts
    FROM    [LifeMail].[dbo].[EmailOptOuts]
    
    SELECT Email
    FROM #tCustomersEmail AS tce
    WHERE Email NOT IN (SELECT CleanEmail FROM #tOptOuts AS too)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following SQL-statement: SELECT DISTINCT name FROM log WHERE NOT name =
i have sql statement like this SELECT DISTINCT results_sp_08.material_number FROM results_sp_08 INNER JOIN courses
I have tried the following two statements: SELECT col FROM db.tbl WHERE col (LIKE
I have the following SQL statement sample: SELECT DISTINCT [CommentNdx] ,[CommentsText] ,[DateTimeAdded] FROM [dbo].[CommentTable]
I have these 2 statements: $pow= mysql_query(select options.label from options where userid='1'); and: $sql=(SELECT
If I have a few UNION Statements as a contrived example: SELECT * FROM
I have these simple SQL statements: SELECT COUNT(ID) AS Expr1 FROM Table1 UNION SELECT
I have a query that, basically, says this: SELECT DISTINCT [DB_ID] FROM [TableX] WHERE
I have a JSON array like this [{Email:someone@some.com,Name:ACO,Groups:[MOD_SW,MOD_PI,MOD_GE],Id:63,Url:aco}, {Email:someone@some.com,Name:Agpo,Groups:[MOD_PI],Id:22,Url:agpo}, {Email:someone@some.com,Name:Akatherm,Groups:[MOD_SW],Id:64,Url:akatherm}, {Email:someone@some.com,Name:Albrand,Groups:[MOD_PI,MOD_GE],Id:23,Url:albrand}] I want to
I basically have 7 select statements that I need to have the results output

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.