Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-05-04 10:20:11 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4409ca8a7a3869b85e358e90da6fb6dbacc45868
4409ca8a
1 parent
03459701
Aiout des scripts de récupération des données pour évaluation recommandations
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
grog-recommendation/scripts/getCollections.sql
grog-recommendation/scripts/getNotesCritiques.sql
grog-recommendation/scripts/preNotesCritiques.sql
grog-recommendation/scripts/getCollections.sql
0 → 100644
View file @
4409ca8
1
+
select
DETAILS_FK
as
itemId
,
UTILISATEUR_FK
as
userId
from
collection
order
by
userId
,
itemId
;
2
+
quit
grog-recommendation/scripts/getNotesCritiques.sql
0 → 100644
View file @
4409ca8
1
+
select
ID_DETAILS
as
itemId
,
ID_UTILISATEUR
as
userId
,
note
as
rating
from
critique
,
journalisable
2
+
where
critique
.
ID_JOURNALISABLE
=
journalisable
.
ID_JOURNALISABLE
3
+
and
ID_UTILISATEUR
is
not
null
4
+
order
by
userId
,
itemId
;
5
+
quit
grog-recommendation/scripts/preNotesCritiques.sql
0 → 100644
View file @
4409ca8
This diff could not be displayed because it is too large.
Please
register
or
login
to post a comment