Baron
Participant
Member since ‎2017 Mar 15

User Statistics

  • 727 Posts
  • 0 Solutions
  • 308 Kudos given
  • 173 Kudos received

User Activity

I am beginner with Docker Containers and looking for an Image for have a containerized instance of SQL Anyhwhere 17.I found one in Docker Hub and tried it, it is running, but it has the version 16, where can I find the 17 version, and is it possible ...
I have such a table with bidirectional synchronisation (using shadow tables) (MLSRV17.exe & DBMLSYNC.exe) create or replace table mytable( col1 varchar(10), col2 int, primary key ("col1") ); I have problem when executing such a statement on Cons.: u...
Is it possible to sort a distinct statement based on another column (rather than the distinced one)? For Example I have this table: create or replace table mycities (cityid int, cityname varchar(40)); insert into mycities values (4, 'Vienna'), (2, 'C...
Is it possible to make a subquery and keep the same order without the need to explitly ordering it outside the subquery? For Example, I have this block and want to have an alphabetical ordered products: create or replace table mytable (idnr int, prod...
I can't solve this "simple" problem, can maybe someone help? What I have is: create or replace table mytable (whichamount int, whichdate date) insert into mytable values (100, '2024-01-01'), (200, '2024-01-01'), (300, '2024-02-01'), (400, '2024-03-01...