Viewing 5 posts - 1 through 6 (of 6 total)
Thank you John will look into it.
For the above code i would like to add a small insert code for the generated serial numbers. Suppose for a medicine Batchno Qty...
November 14, 2019 at 12:52 pm
Can you pls explain the below code
WITH N4 AS (
SELECT n FROM (VALUES (1),(2),(3),(4))v(n)
)
, N16 AS (
SELECT ROW_NUMBER() OVER (ORDER BY n1.n) AS n
FROM N4 n1
CROSS...
November 14, 2019 at 12:21 pm
Viewing 5 posts - 1 through 6 (of 6 total)