package sq type PP map[string]any func Join(pps ...PP) PP { r := PP{} for _, add := range pps { for k, v := range add { r[k] = v } } return r }