2014-03-05 117 views
-1

對於下面的查詢,我需要使用lambda表達式。使用lambda表達式的子查詢

select tb_device.lat,tb_device.lng,tb_device.speed,tb_device.trackedOn, IL.DeviceIcon, IL.speedLimit, " + 
        "IL.deviceId, IL.deviceName, tb_device.Location, tb_device.IsExist " + 
        "from(select CONVERT (DATE, max(trackedOn)) as trackedDate , inventoryLogId as InventoryId from tb_devicelog " + 
        "group by inventoryLogId) as tb " + 
        "inner join tb_devicelog as tb_device on tb.InventoryId=tb_device.inventoryLogId and " + 
        "tb.trackedDate= CONVERT (DATE, tb_device.trackedOn) " + 
        "inner join tb_inventorylog IL on tb_device.inventorylogid=IL.id " + 
        "inner join tb_Logins ln on IL.assignedToCustId = ln.customers_id where ln.userName = 'cadmin' and IL.id in(1,3,2)" 
+1

只要有可能,我的上帝。你嘗試過什麼嗎? –

+0

你能告訴我們你試過了什麼嗎? – VoltaicShock

回答