SQL Table
| Name | Missing |
| ------------ | ------------ |
| B | Jan |
| A | Jan |
| A | Mar |
Desired Result
A is missing Jan, Mar
B is missing Jan
How can I format the above sql table into the desired html? I have experience replicating this into an html table for sending out an email but not much else...
1条答案
按热度按时间guicsvcw1#
Just a guess, but here is an option using
string_agg()
Results