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 8645199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T12:29:19+00:00 2026-06-12T12:29:19+00:00

I need a way to search for a word within an SQL query, and

  • 0

I need a way to search for a word within an SQL query, and to be able to determine whether or not that word is within a subquery or the main query.

For example:

SELECT * 
FROM products 
WHERE id NOT IN (SELECT product_id 
                 FROM tagmap 
                 WHERE tag_id = 1)

I need to replace the instance of the word WHERE with, say, WHERE 1=1 AND in the query string, but only in the main query, not in the subquery.

This is only an example of the issue I’m facing. The real queries are much bigger than this and contain several subqueries! Also, there are hundreds of queries I need to do this for, so I need to be able to do this automatically.

  • 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-06-12T12:29:20+00:00Added an answer on June 12, 2026 at 12:29 pm

    I think the following regex:

    (?<!\(.*)\b(WHERE)\b|\b(WHERE)\b(?!.*\))
    

    will match any instance of “WHERE”:

    • that occurs to the left of the first opening parenthesis, or
    • that occurs to the right of the last closing parenthesis.

    ie Won’t detect instances of WHERE that occur inside a (..).

    It’s worked on the few test cases I’ve tried… and I’m not going to do any more testing without further clarifcation of your requirements…

    EG below, I’ve indicated the matched instances by surrounding with tildes: ~WHERE~.

    SELECT * 
    FROM products 
    ~WHERE~ id NOT IN 
        (SELECT product_id FROM tagmap WHERE tag_id = 1 and (SELECT true WHERE something) );
    
    SELECT x FROM y ~WHERE~ z = z;
    
    SELECT Count(*) 
    FROM (Select rows FROM table WHERE filter) 
    ~WHERE~ z
    

    I’d strongly recommend you test this thoroughly before relying on it.


    EDIT: A basic .NET implementation… because I’ve got VS open at the moment… 😉

    using System;
    using System.Text;
    using System.Text.RegularExpressions;
    using System.IO;
    
    class Program
    {
        static void Main(string[] args)
        {
            StreamReader sr = new StreamReader("pathToSqlScript.sql");
            string oldSQLString = sr.ReadToEnd();
            string newSQLString = Regex.Replace(oldSQLString, @"(?<!\(.*)\b(WHERE)\b|\b(WHERE)\b(?!.*\))", @"WHERE 1=1 AND");
            StreamWriter sw = new StreamWriter("newSqlScript.sql");
            sw.Write(newSQLString);
        }
    }
    

    EDIT: To do this in a text editor…

    Visual Studio will allow you do perform a search/replace based on a regex. I’d imagine something like Notepad++ would do it (at least with the aid of a plugin). Or this might help you: http://www.regular-expressions.info/editpadpro.html

    Otherwise, knock up something that’ll read/modify your text file, eg using PHP, .NET, Java, ….

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi so I need some FAST way to search for a word in a
So I can search the whole database but i need a way to change
I need to find whether a word is verb or noun or it is
i need to submit a query to search posts with a specific tag. the
Hello I'm looking for a way to search for a word in a word
I need to find the number (not necessarily the tweets themselves) of Tweets that
I'm finding it difficult to word my question in a way I can search
the below way i did the search with lucene.net. this routine search multiple word
Basically, I need to be able to find certain words (by 'word' I mean
I need a way to allow each letter of a word to rotate through

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.