Is it possible to create a mysql select (directly or using a stored procedure) that will return blanks for repeating columns. For example, a select that would normally return these 7 records with 2 columns:
Bob 123
Bob 557
Bob 888
Joe 887
Joe 223
Tom 899
Tom 999
I would prefer to see this directly from the sql select:
Bob 123
557
888
Joe 887
223
Tom 899
999
I realize I can just post process the records in my program, but I'd like to replace the duplicates with blanks within the sql call.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…