Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Observatoire accessibilité RGAA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adullact
Observatoire Accessibilité
Observatoire accessibilité RGAA
Commits
4e31c040
Commit
4e31c040
authored
1 year ago
by
Matthieu FAURE
Browse files
Options
Downloads
Patches
Plain Diff
feat: enhance SQL query for CSV export
parent
cfd5ca83
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Documentation/CSV_export.sql
+36
-22
36 additions, 22 deletions
Documentation/CSV_export.sql
with
36 additions
and
22 deletions
Documentation/CSV_export.sql
+
36
−
22
View file @
4e31c040
SELECT
WR
.
Url
,
a
.
Dt_Creation
Audit_date
,
a
.
Status
,
COALESCE
(
WRS
.
Nb_Failed_Occurrences
,
""
)
Errors
,
(
CASE
WHEN
WRS
.
Raw_Mark
IS
NULL
THEN
""
WHEN
WRS
.
Raw_Mark
>
99
THEN
"A"
WHEN
WRS
.
Raw_Mark
>
90
THEN
"B"
WHEN
WRS
.
Raw_Mark
>
85
THEN
"C"
WHEN
WRS
.
Raw_Mark
>
75
THEN
"D"
WHEN
WRS
.
Raw_Mark
>
60
THEN
"E"
ELSE
"F"
END
)
as
Mark
,
COALESCE
(
WRS
.
Nb_Na
,
""
)
Tests_NA
,
COALESCE
(
WRS
.
Nb_Passed
,
""
)
Tests_C
,
COALESCE
(
WRS
.
Nb_Failed
,
""
)
Tests_NC
INTO
OUTFILE
'/tmp/Observatoire_Accessibilité_2023-09-19.csv'
CHARACTER
SET
utf8mb4
SELECT
'URL'
,
'Date'
,
'Statut'
,
'Erreurs'
,
'Tests non-applicables'
,
'Tests conformes'
,
'Tests non-conformes'
,
'Tests pré-qualifiés'
,
'Tests non-testés'
,
'Note Asqatasun'
UNION
ALL
(
SELECT
*
FROM
(
SELECT
WR
.
Url
as
'URL'
,
a
.
Dt_Creation
as
'Date'
,
a
.
Status
as
'Statut'
,
COALESCE
(
WRS
.
Nb_Failed_Occurrences
,
''
)
as
'Erreurs'
,
COALESCE
(
WRS
.
Nb_Na
,
''
)
as
'Tests non-applicables'
,
COALESCE
(
WRS
.
Nb_Passed
,
''
)
as
'Tests conformes'
,
COALESCE
(
WRS
.
Nb_Failed
,
''
)
as
'Tests non-conformes'
,
COALESCE
(
WRS
.
Nb_Nmi
,
''
)
as
'Tests pré-qualifiés'
,
COALESCE
(
WRS
.
Nb_Not_Tested
,
''
)
as
'Tests non-testés'
,
(
CASE
WHEN
WRS
.
Raw_Mark
IS
NULL
THEN
''
WHEN
WRS
.
Raw_Mark
>
99
THEN
'A'
WHEN
WRS
.
Raw_Mark
>
90
THEN
'B'
WHEN
WRS
.
Raw_Mark
>
85
THEN
'C'
WHEN
WRS
.
Raw_Mark
>
75
THEN
'D'
WHEN
WRS
.
Raw_Mark
>
60
THEN
'E'
ELSE
'F'
END
)
as
'Note Asqatasun'
FROM
AUDIT
as
a
INNER
JOIN
WEB_RESOURCE
WR
on
a
.
Id_Audit
=
WR
.
Id_Audit
LEFT
JOIN
WEB_RESOURCE_STATISTICS
WRS
on
a
.
Id_Audit
=
WRS
.
Id_Audit
)
as
csv_export
)
INTO
OUTFILE
'/tmp/Observatoire_Accessibilite_2023-09-19.csv'
CHARACTER
SET
utf8mb4
FIELDS
TERMINATED
BY
','
OPTIONALLY
ENCLOSED
BY
'"'
LINES
TERMINATED
BY
'
\n
'
FROM
AUDIT
as
a
INNER
JOIN
WEB_RESOURCE
WR
on
a
.
Id_Audit
=
WR
.
Id_Audit
LEFT
JOIN
WEB_RESOURCE_STATISTICS
WRS
on
a
.
Id_Audit
=
WRS
.
Id_Audit
ORDER
BY
WR
.
Url
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment