mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
207 B
7 lines
207 B
1 year ago
|
CREATE VIEW p_user_relation AS
|
||
|
SELECT user_id, friend_id he_uid, 5 AS style
|
||
|
FROM p_contact WHERE status=2 AND is_del=0
|
||
|
UNION
|
||
|
SELECT user_id, follow_id he_uid, 10 AS style
|
||
|
FROM p_following WHERE is_del=0;
|