I have a dataset of 3 columns; date, sales and new_sales.
What i am trying to do in bigquery is for a given date, grab the first sales value and populate this into a new column called new_sales whilst leaving the rest of the days for that given date a value of 0.
How would i go about creating this query in bigquery?
Here is an example i made earlier - it should work for you:
http://sqlfiddle.com/#!17/5c48e/8/0
Although this answer assumes that your sales values stay consistent on the dates and do not change, if they do change e.g. 12/10/2020 has two different dates then you would need to order by date.
my code is below: