on ‎2017 Mar 15 9:28 AM
I wanted to retrieve the row number using flexible search. For example, I have employee table with column name and I want to retrieve the column name with row number. Please see below:
Num . Name 1 . ABC 2 . DEF 3 . GHI 4 . JKL
Request clarification before answering.
This works with SQLServer:
SELECT ROW_NUMBER() OVER(ORDER BY p_code ASC) AS Row#, {code}, {creationtime} FROM {Product!}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you need to do it with a syntax available in your DB (Oracle with ROWNUM), there is nothing in FlexibleSearch which can deliver "row number"-like info.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.