Lukas Dolezal · Sep 30, 2017 go to post
SELECT
CASE
  WHEN Field1 = 1 THEN 'ONE'
  WHEN Field1 = 2 THEN 'TWO'
  ELSE NULL
END
FROM MyTable
Lukas Dolezal · Apr 12, 2022 go to post

Thanks for the reply. Unfortunately, this solution will not help me. I want to extend some classes by inheriting them from other classes (with some properties, methods, indexes). This property inheritance adds this data to the storage (global ^ xD). But the index is not stored in ^ xI because it is not the first superclass.

Lukas Dolezal · Apr 12, 2022 go to post

Thanks for the reply. Unfortunately, this solution will not help me. It does not create an index global. Probably because I use several superclasses.

Lukas Dolezal · May 15, 2024 go to post

VSCode opens the cls file from the int code, but the cursor is not on the same line. How do I display cls or int including cursor movement? Thanks