Posts by Carlos Yuri • 1 point
1 post
-
0
votes3
answers73
viewsA: How do I select the latest records for specific entries?
Recital: create table Purchase (Idcompra int, Customer varchar(1)) insert into Compra (IDCompra, CLiente) select 1, 'A' union select 2, 'A' union select 1 ,'B' union select 2 ,'B' union select 3…
sql-serveranswered Carlos Yuri 1