Dear All,
I have a query that has only one field and I would like to add a new field that displays the number of the record
I have managed to do this for numeric fields with the help of a subquery like this:
and it works fine
My question is: how can I do this if my field is TEXT and not numeric?
Many thanks in advance
I have a query that has only one field and I would like to add a new field that displays the number of the record
I have managed to do this for numeric fields with the help of a subquery like this:
Code:
SELECT [Copy Of qapp_ext_cikk].Cikkszam, (SELECT Count(*)FROM [copy of qapp_ext_cikk] AS M1 WHERE [cikkszam]>[copy of qapp_ext_cikk].[cikkszam])+1 AS test
FROM [Copy Of qapp_ext_cikk];
and it works fine
My question is: how can I do this if my field is TEXT and not numeric?
Many thanks in advance