I have a database structured for user clicks. Every time someone clicks from a website to visit another website, I capture the username, website, and what click in their click-path it was. It looks like this:
+----------+-------+---------------+
| Customer | Click | Website |
+----------+-------+---------------+
| john | 1 | facebook |
+----------+-------+---------------+
| john | 2 | microsoft |
+----------+-------+---------------+
| john | 3 | facebook |
+----------+-------+---------------+
| steven | 1 | apple |
+----------+-------+---------------+
| steven | 2 | stackoverflow |
+----------+-------+---------------+
| steven | 3 | cnn |
+----------+-------+---------------+
I want to visualize how people move around on the internet. I believe a node path is the best idea, but I'm not sure how to transform this data into that. For node value pairs, the table above must be manipulated to look like this:
+----------+----------------+-----------------+
| Customer | Origin Website | Landing Website |
+----------+----------------+-----------------+
| john | facebook | microsoft |
+----------+----------------+-----------------+
| john | microsoft | facebook |
+----------+----------------+-----------------+
| steven | apple | stackoverflow |
+----------+----------------+-----------------+
| steven | stackoverflow | cnn |
+----------+----------------+-----------------+
Is this possible to do only using oracle SQL?
Something like this. I added a column to show the succession of "hops" from one web site to another; otherwise you will know from where to where, but not in what order.