Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ncedddf

    Access queries point to new 2000 SQL server

    When you create your links to the SQL 2000 tables, rename the to what they were under SQL 7
  2. ncedddf

    Outer Join Error

    Thanks Bygs What I'm trying to do is show all Injury Codes from luICD9 with a count of visits from tblInjury with corresponding date from tblvisit. I need the outer join because There are Injury codes that have no visits. Dennis
  3. ncedddf

    Extract Date from DateTime

    You could also use WHERE convert(Varchar(10),StatDate,101) = convert(Varchar(10),GetDate,101)
  4. ncedddf

    Outer Join Error

    Here is a shortened version SELECT case when Diag_Code = 'BLAH' then 'BLAH BLAH' when Diag_Code = 'BAM' then 'BAM BAM' else 'Unknow' END as Cluster, COUNT(i.VisitID) AS Visits FROM (select visitid,Diag_Code from tblInjury inj, luICD9 icd where icd.Diag_Code *= inj.Injury_Code and...
  5. ncedddf

    Outer Join Error

    The whole statement is huge. It has a very large case statement which in turn has a very large group by statement.
  6. ncedddf

    Outer Join Error

    when attempting to query three tables with this from and where clause, FROM (select visitid,Diag_Code from tblInjury inj, luICD9 icd WHERE icd.Diag_Code *= inj.Injury_Code and icd.Diag_Code like 'E%')i, tblVisit v WHERE i.visitid = v.visitid I am receiving the following error. 'The...
  7. ncedddf

    FrontEnd with Access & BackEnd with SQL Server???

    Actually, what DrewConn says is not necessary. Once you have linked the SQL Server tables, you can change the name in Access to match you Access codes, providing you don't already have an existing Access table with the same name.

Part and Inventory Search

Back
Top