Ask a Question related to Dreamweaver AppDev, Design and Development.
-
darrel #1
SQL: Selecting everything BUT
I have a table with 439 records in it. This table is linked to another,
which is related to a 3rd via a 4th relationship table.
I have a gigantic query that connects all this together AND (should) account
for files that aren't properly linked (for error checking).
The catch is that the query returns 430 records. So there are 9 orphaned
records that aren't quite matching my SQL query.
Is there any way to run a 'reverse' query in a SQL analyzer to see
everything BUT what is returned via the query?
-Darrel
darrel Guest
-
selecting from two tables
Hi I have one table called 'foobar_items' ID desc ________ ________________ foo1 very good foo foo2 ... -
SELECTING ROWS
Hi again Im trying to select a particular ROW in my Database, I want to run a query on the 1st 2nd and 3rd rows seprately. the information will... -
selecting different css
stu75 wrote: You could just attach a print media style sheet to accomplish this and won't need another page: Take a look at these articles:... -
Selecting
I want to read the Elements of the Subject of a client certificate sent to a Web Service via HTTPS. This can be done by the following code... -
selecting datagrid row
Hello asp.net I've stuck a Select button from the property builder on my grid (Col 0). Upon click I'd like it to return the value in Col 1... -
Manuel Socarras #2
Re: SQL: Selecting everything BUT
what about:
SELECT ... NOT (your gigantic query)
HTH,
manuel
darrel wrote:> I have a table with 439 records in it. This table is linked to another,
> which is related to a 3rd via a 4th relationship table.
>
> I have a gigantic query that connects all this together AND (should) account
> for files that aren't properly linked (for error checking).
>
> The catch is that the query returns 430 records. So there are 9 orphaned
> records that aren't quite matching my SQL query.
>
> Is there any way to run a 'reverse' query in a SQL analyzer to see
> everything BUT what is returned via the query?
>
> -Darrel
>
>Manuel Socarras Guest
-
darrel #3
Re: SQL: Selecting everything BUT
> SELECT ... NOT (your gigantic query)
No, that won't work AFICT. That'd only work if I had a discreet WHERE
statement.
My query is a series of a couple joins and a few unions. There are all sorts
of relationships going on with the query and I'm trying to find out where
these 9 records are falling through my logic.
-Darrel
darrel Guest



Reply With Quote

