Greetings, I am working with a table that does not have a column to be able to identify the rows, that is, it does not have a identity
which causes me a problem because I need to obtain information from a column of each one of the records, someone could indicate me some sql function that I add a column listing all the records and can be used in a condition WHERE
.
this is what I have:
CVE_C CVE_E
54231 1
54236 1
54237 1
54238 1
54240 1
this is what I need:
ID CVE_C CVE_E
1 57117 1
2 57116 1
3 57115 1
4 57114 1
5 57113 1