0
On-Premise: select + order by Syntax
Hallo zusammen,
gibt es eine nachvollziehbare Ursache, warum "order by" bei einem select nicht akzeptiert wird, wenn das Ergebnis in einer Variable landen soll? Zeile 1 wird vom Editor nicht bemängelt, Zeile 3 schon - Inhalt ist eigentlich identisch?
select Lifecycle where 'Gerät / Hardware' = 189 order by 'Lieferdatum Kunde';
let a := select Lifecycle where 'Gerät / Hardware' = 189 order by 'Lieferdatum Kunde';
Vielen Dank vorab für Vorschläge!
4 replies
-
For some reason Ninox is picky with a variable. Put quotes around the select statement.
let a := (select Lifecycle where 'Gerät / Hardware' = 189 order by 'Lieferdatum Kunde');
I got the error message in iOS app and in a browser.
Content aside
- Status Answered
- 2 yrs agoLast active
- 4Replies
- 126Views
-
2
Following