Azure – How to create a continuous sequence id irrespective of the runs in Databricks
I have a Databricks DataFrame with Columns : tno,data_value Output of first Databricks run: tno, data_value 1,hdjsjsjnsns 2,dhjdjdjsnsn 3,jdjsjsjsjsjjs When I run again the same notebook after some time it should generate as: tno, data_value 4,hdjsjsjnsns 5,dhjdjdjsnsn 6,jdjsjsjsjsjjs Just like…