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

  • SEARCH
  • Home
  • 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 177243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T14:01:14+00:00 2026-05-11T14:01:14+00:00

I’ve been using SQL for years now but rarely anything more that simple inserts

  • 0

I’ve been using SQL for years now but rarely anything more that simple inserts and selects etc… so I’m no SQL expert. I’m wondering if I could get some help in optimizing a more complex SQL statement that I’m executing on SQLite, from PHP through PDO.

The statement seems to work correctly, just seems to take longer that I would have expected (or perhaps I’m just expecting too much).

This is the SQL:

INSERT OR IGNORE INTO MailQueue(SubscriberID, TemplateID)     SELECT Subscribers.ID, '1' AS TemplateID     FROM Subscribers      INNER JOIN SubscriberGroups ON Subscribers.ID=SubscriberGroups.SubscriberID     WHERE SubscriberGroups.GroupID IN ('1', '2', '3')     AND Subscribers.ID NOT IN          (          SELECT Subscribers.ID FROM Subscribers          INNER JOIN SubscriberGroups ON Subscribers.ID=SubscriberGroups.SubscriberID         WHERE SubscriberGroups.GroupID IN ('4', '5', '6')         ); 

What I’ve got is a list of subscribers, in one or more groups. I want to add subscribers to a mail queue, selecting those that belong to one or more groups (1,2,3) but exclude those that are also in another set of groups (4,5,6).

Firstly, is the above SQL typical of how to do this?

Secondly, what indicies should I have to make this work as efficiently as possible?

Currently it takes about 30 seconds to get through about 5000 subscriber records (and a handful of groups) on a avg spec LAMP.

At the end of the day performance isn’t that critical, but I’d like to understand this stuff better so any insight greatly appreciated.

Brad

  • 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. 2026-05-11T14:01:15+00:00Added an answer on May 11, 2026 at 2:01 pm

    Chances are the extra joins are killing you. What if you do:

    SELECT Subscribers.ID, '1' AS TemplateID FROM Subscribers  WHERE EXISTS( SELECT *                 FROM SubscriberGroups                WHERE Subscribers.ID=SubscriberGroups.SubscriberID                                  AND SubscriberGroups.GroupID IN ('1', '2', '3') )    AND NOT EXISTS( SELECT *                     FROM SubscriberGroups                    WHERE Subscribers.ID=SubscriberGroups.SubscriberID                       AND SubscriberGroups.GroupID IN ('4', '5', '6')     ); 

    You’d also want to make sure that you have an index on SubscriberGroups( SubscriberID, GroupID )

    My guess is that Subscribers already has an index on ID, right?

    EDIT: Another option, which may or may not be faster. Look at the query plans of each to see…

    This one may be a single index scan which could be faster than two index seeks, but it depends on SQLite’s optimizer…

    SELECT Subscribers.ID, '1' AS TemplateID FROM Subscribers  INNER JOIN( SELECT SUM( CASE WHEN GroupID IN('1', '2', '3') THEN 1 ELSE 0 END ) AS inGroup,                    SUM( CASE WHEN GroupID IN('4', '5', '6') THEN 1 ELSE 0 END ) AS outGroup,                    SubscriberID                             FROM SubscriberGroups                          WHERE SubscriberGroups.GroupID IN ('1', '2', '3', '4', '5', '6' )           ) SubscriberGroups        ON Subscribers.ID=SubscriberGroups.SubscriberID       AND inGroup  > 0       AND outGroup = 0 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 288k
  • Answers 288k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer A simple, single pole, low pass, recursive IIR filter is… May 13, 2026 at 5:17 pm
  • Editorial Team
    Editorial Team added an answer It was actually blocking on both computers and both were… May 13, 2026 at 5:17 pm
  • Editorial Team
    Editorial Team added an answer Quick google reveals this... don't know if it helps. Copied… May 13, 2026 at 5:17 pm

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.