Changes between Version 28 and Version 29 of AdvancedReports
- Timestamp:
- 03/10/22 21:33:42 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v28 v29 103 103 *, 104 104 ( 105 select to_char(106 (107 select108 count(*)109 from artists a110 where111 a.admin_verified_at is not null and112 a.artist_type_id = at1.id105 select to_char( 106 ( 107 select 108 count(*) 109 from artists a 110 where 111 a.admin_verified_at is not null and 112 a.artist_type_id = at1.id 113 113 ) 114 114 / 115 115 ( 116 select count(*) from artists a 117 where 118 a.admin_verified_at is not null 116 select 117 count(*) 118 from artists a 119 where 120 a.admin_verified_at is not null 119 121 )::numeric , 120 122 'fm00D00%' … … 124 126 select to_char( 125 127 ( 126 select127 count(*)128 from artists a129 where130 a.admin_verified_at is not null and131 a.artist_type_id = at1.id and132 a.manager_id is not null128 select 129 count(*) 130 from artists a 131 where 132 a.admin_verified_at is not null and 133 a.artist_type_id = at1.id and 134 a.manager_id is not null 133 135 ) 134 136 / 135 137 ( 136 select count(*) from artists a 137 where 138 a.admin_verified_at is not null 138 select 139 count(*) 140 from artists a 141 where 142 a.admin_verified_at is not null 139 143 )::numeric * 100, 140 144 'fm00D00%' … … 155 159 ( 156 160 case when ( 157 select158 count(*)159 from artists a160 join offers o on o.artist_id = a.user_id161 where162 a.admin_verified_at is not null and163 a.artist_type_id = at1.id164 ) != 0 then161 select 162 count(*) 163 from artists a 164 join offers o on o.artist_id = a.user_id 165 where 166 a.admin_verified_at is not null and 167 a.artist_type_id = at1.id 168 ) != 0 then 165 169 ( 166 170 select … … 195 199 ( 196 200 case when ( 197 select198 count(*)199 from artists a200 join offers o on o.artist_id = a.user_id201 where202 a.admin_verified_at is not null and203 a.artist_type_id = at1.id204 ) != 0 then201 select 202 count(*) 203 from artists a 204 join offers o on o.artist_id = a.user_id 205 where 206 a.admin_verified_at is not null and 207 a.artist_type_id = at1.id 208 ) != 0 then 205 209 ( 206 210 select … … 235 239 ( 236 240 case when ( 237 select238 count(*)239 from artists a240 join offers o on o.artist_id = a.user_id241 where242 a.admin_verified_at is not null and243 a.artist_type_id = at1.id244 ) != 0 then241 select 242 count(*) 243 from artists a 244 join offers o on o.artist_id = a.user_id 245 where 246 a.admin_verified_at is not null and 247 a.artist_type_id = at1.id 248 ) != 0 then 245 249 ( 246 250 select … … 275 279 ( 276 280 case when ( 277 select278 count(*)279 from artists a280 join offers o on o.artist_id = a.user_id281 where282 a.admin_verified_at is not null and283 a.artist_type_id = at1.id284 ) != 0 then281 select 282 count(*) 283 from artists a 284 join offers o on o.artist_id = a.user_id 285 where 286 a.admin_verified_at is not null and 287 a.artist_type_id = at1.id 288 ) != 0 then 285 289 ( 286 290 select
