Hi guys, I hope you can help me with this question, I’ll simplify the context.
I have the following tables
Table_Users with columns: UserID, UserName, UserCreatedDt
Table_Products with columns: ProductID, ProductName
Table_Transactions with columns: UserID, ProductID, PurchasedDt
My app is live with real data populated.
Now I want to add an extra column to the Table_Users called NumOfProductsPurchased, which would count the products purchased per user.
How would I do that? Is it too late now that my app has real data? Even if it’s late, what’s the workaround/manual way to do it.
Thank you very much for any help and guidance you can provide.
Cheers!