I have a query on diffrent hospital information. I want to just view the provided information on just one specific hospital but it gives me this error message: SINTAX ERROR (MISSING OPERATOR) IN QUERY EXPRESSION 'HOSPITAL NAME'
This is the formula I have. [SELECT [SA Case Table].[Exam Date], [SA Case Table].[Case Type], [SA Case Table].[Patient Last Name], [SA Case Table].[Patient First Name], [SA Case Table].[Medical Record #], [SA Case Table].[Hospital Name], [SA Case Table].SANE
FROM [SA Case Table];]
If I try to pull the hospital name from the Hospital table I created I still get the same error message
Formula:
[SELECT [SA Case Table].[Exam Date], [SA Case Table].[Case Type], [SA Case Table].[Patient Last Name], [SA Case Table].[Patient First Name], [SA Case Table].[Medical Record #], [Hospital Lookup].[Hospital Name], [SA Case Table].SANE
FROM [Hospital Lookup] INNER JOIN [SA Case Table] ON [Hospital Lookup].[Hospital ID] = [SA Case Table].Hospital;]