SitePoint Sponsor

User Tag List

Results 1 to 2 of 2

Thread: what's the equal word for "join on " from sql for access , using in query about jo

  1. #1
    SitePoint Member
    Join Date
    Apr 2004
    Location
    usa
    Posts
    22
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    what's the equal word for "join on " from sql for access , using in query about jo

    Hi what's the equal word for "join on " from sql for access , using in query about joining tables.
    thanks

  2. #2
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,463
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    the same as other databases

    except that in access, the keyword INNER is not optional

    Code:
    select foo
         , bar  
         , qux
      from table1 
    inner 
      join table2
        on table1.id = table2.id1
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •