Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Query Problem
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Miscellaneous
Thread ID:
01071210
Message ID:
01071215
Views:
17
>Whats wrong with this syntax:
>
>
>select document.* , station.station_name
>	from document, station
>	join station on document.station = station.id
>
>
>I'm getting the message:
>The objects "station" and "station" in the FROM clause have the same exposed names.
>Use correlation names to distinguish them.
select document.* , station.station_name
	from document join station
	ON station.id = document.station 
What type of data do you want to display? There are several join conditions that can be used.

Tom
Previous
Reply
Map
View

Click here to load this message in the networking platform