I need to write RegEx in C# to parse SQL join query which is given as a string. Can somebody please help me because I\'m new at this. Thanks a lot
this is my problem:
Pulling this over from comments, since I think it's the right answer here:
SQL is #3 on the list of Stuff You Should Not Try To Parse With A Regex, just behind HTML and MUMPS. Use a dialect-specific, dedicated SQL parser, not a regex.