Click here to Skip to main content
15,922,419 members
Home / Discussions / Database
   

Database

 
GeneralRe: Enterprise manger Pin
Tom Wright4-Feb-05 6:45
Tom Wright4-Feb-05 6:45 
GeneralRe: Enterprise manger Pin
WoutL4-Feb-05 22:57
WoutL4-Feb-05 22:57 
GeneralExtended Procedures question Pin
Tom Wright4-Feb-05 5:45
Tom Wright4-Feb-05 5:45 
GeneralRe: Extended Procedures question Pin
David Salter4-Feb-05 6:13
David Salter4-Feb-05 6:13 
GeneralRe: Extended Procedures question Pin
Tom Wright4-Feb-05 6:46
Tom Wright4-Feb-05 6:46 
GeneralRe: Extended Procedures question Pin
David Salter4-Feb-05 7:03
David Salter4-Feb-05 7:03 
GeneralReally easy question! Pin
goldoche4-Feb-05 3:50
goldoche4-Feb-05 3:50 
GeneralRe: Really easy question! Pin
SimonS4-Feb-05 4:44
SimonS4-Feb-05 4:44 
Your connection string won't change. A connection string is per database, not per table.

In order to return info from more than one table, you will need to use a JOIN.

Here's a SQL Query I am using for a product of mine - also MS Access:

SELECT Staff.FirstName, Staff.LastName, ClassSchedule.ClassName, ClassSchedule.Duration, Staff.ID
FROM (StaffClassSignIns INNER JOIN Staff ON StaffClassSignIns.StaffID = Staff.ID) INNER JOIN ClassSchedule ON StaffClassSignIns.ClassScheduleID = ClassSchedule.ID
WHERE (((StaffClassSignIns.ClassScheduleID)=[@ClassSchedule]));



Cheers,
Simon

sig ::
"Don't try to be like Jackie. There is only one Jackie.... Study computers instead.", Jackie Chan on career choices.

article :: animation mechanics in SVG blog:: brokenkeyboards
"Most of us are programmers, but a few use VB", Christian Graus

GeneralReplication: Storing snapshot at FTP site. Pin
RuchirD3-Feb-05 19:47
RuchirD3-Feb-05 19:47 
GeneralRe: Replication: Storing snapshot at FTP site. Pin
tojamismis4-Feb-05 6:50
tojamismis4-Feb-05 6:50 
GeneralSQL 2000: Index manager hangs while adding Index Pin
Chris Maunder3-Feb-05 11:15
cofounderChris Maunder3-Feb-05 11:15 
GeneralRe: SQL 2000: Index manager hangs while adding Index Pin
Mike Dimmick3-Feb-05 23:54
Mike Dimmick3-Feb-05 23:54 
GeneralRe: SQL 2000: Index manager hangs while adding Index Pin
Chris Maunder4-Feb-05 0:23
cofounderChris Maunder4-Feb-05 0:23 
GeneralRe: SQL 2000: Index manager hangs while adding Index Pin
Mike Dimmick4-Feb-05 5:53
Mike Dimmick4-Feb-05 5:53 
GeneralRe: SQL 2000: Index manager hangs while adding Index Pin
Chris Maunder4-Feb-05 17:02
cofounderChris Maunder4-Feb-05 17:02 
GeneralCreating a subset Pin
numbrel3-Feb-05 9:12
numbrel3-Feb-05 9:12 
GeneralRe: Creating a subset Pin
Just Greeky Creek3-Feb-05 21:45
Just Greeky Creek3-Feb-05 21:45 
GeneralINNER join question Pin
Imtiaz Murtaza3-Feb-05 1:36
Imtiaz Murtaza3-Feb-05 1:36 
GeneralRe: INNER join question Pin
Colin Angus Mackay3-Feb-05 2:04
Colin Angus Mackay3-Feb-05 2:04 
GeneralRe: INNER join question Pin
Mike Dimmick4-Feb-05 0:12
Mike Dimmick4-Feb-05 0:12 
GeneralRe: INNER join question Pin
Colin Angus Mackay4-Feb-05 0:28
Colin Angus Mackay4-Feb-05 0:28 
GeneralRe: INNER join question Pin
Just Greeky Creek3-Feb-05 2:25
Just Greeky Creek3-Feb-05 2:25 
GeneralFirehose Mode Pin
Shady Aly3-Feb-05 1:05
Shady Aly3-Feb-05 1:05 
GeneralRe: Firehose Mode Pin
Colin Angus Mackay3-Feb-05 2:08
Colin Angus Mackay3-Feb-05 2:08 
GeneralautoNumber and Max+1 which is Best Pin
TariqMahmood2-Feb-05 18:52
TariqMahmood2-Feb-05 18:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.