12 lines
440 B
Markdown
Executable File
12 lines
440 B
Markdown
Executable File
```sql
|
|
select a.DeviceName,b.ProjectID,a.id as DeviceId,a.MonTypeID,b.StationCode, b.Latitude as B ,b.Longitude as L,c.ConvertXValue as OriginX,c.ConvertYValue as OriginY,c.ConvertZValue as OriginZ from safeMonitorMgr.dbo.Mgr_Device as a
|
|
right join safeMonitorMgr.dbo.station as b
|
|
```
|
|
on a.StationID=b.Id
|
|
```sql
|
|
right join safeMonitorMgr.dbo.HimonitorSyncConfig as c
|
|
```
|
|
on c.DeviceID=a.id
|
|
```sql
|
|
where b.ProjectID =84 or b.ProjectID=85
|
|
``` |