7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
export const getLanes = `
|
|
select DISTINCT alpla_laneDescription
|
|
from Alpla_Lst.dbo.lanes (nolock)
|
|
where alpla_laneDescription is not null
|
|
order by alpla_laneDescription desc
|
|
`;
|