N
Noozer
SELECT * FROM Choices WHERE Active;
The above query returns all the rows that are active in the Choices table.
The layout for the Choices table is:
ChoicesKey: Autonumber
Choice: text 20char
Active: Boolean
I need to add a column to the above query that is false unless there is an
entry in my Choices2Ticket column for that Choice and a specific TicketKey
The layout for the second table, named Choices2Tickets, is:
TicketKeyLink: Number
ChoiceKeyLink: Number
....so, for Ticket #123 I want all the data from the Choices table PLUS a
column named Checked that is TRUE if there are any entries in the
Choices2Ticket table where the TicketKey is 123 for the current ChoiceKey.
Make sense?
The above query returns all the rows that are active in the Choices table.
The layout for the Choices table is:
ChoicesKey: Autonumber
Choice: text 20char
Active: Boolean
I need to add a column to the above query that is false unless there is an
entry in my Choices2Ticket column for that Choice and a specific TicketKey
The layout for the second table, named Choices2Tickets, is:
TicketKeyLink: Number
ChoiceKeyLink: Number
....so, for Ticket #123 I want all the data from the Choices table PLUS a
column named Checked that is TRUE if there are any entries in the
Choices2Ticket table where the TicketKey is 123 for the current ChoiceKey.
Make sense?