I have a giant table something like this:
Date Price1 Price2
1 13 14.9
2 13.1 NULL
3 NULL 14
4 NULL 14.5
5 13 14
I want to fill the NAs so that my table in SQL looks like the following:
Date Price1 Price2
1 13 14.9
2 13.1 14.9
3 13.1 14
4 13.1 14.5
5 13 14
I am really new to SQL so please excuse me. I searched here and it seems like you can do this in R but how should I do it in SQL.
I am using Microsoft SQL Server Management. Also I cant seem to figure how to properly insert a table and they would not let me post the pics. So, sorry about the formatting.