1892. Page Recommendations II
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| user1\_id | int |
| user2\_id | int |
+---------------+---------+
(user1\_id, user2\_id) is the primary key for this table.
Each row of this table indicates that the users user1\_id and user2\_id are friends.
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| user\_id | int |
| page\_id | int |
+-------------+---------+
(user\_id, page\_id) is the primary key for this table.
Each row of this table indicates that user\_id likes page\_id.ac
Last updated