时间:2021-07-01 10:21:17 帮助过:18人阅读
新建一表,2字段
uid 保存用户id
did 保存资源id
查询用户是否下载过某资源
select * from tbl_name where uid=$uid and did=$did
查询用户下载过那些资源
select * from tbl_name where uid=$uid
查询都有哪些用户下载了某资源
select * from tbl_name where did=$did
新建一表,2字段
uid 保存用户id
did 保存资源id
查询用户是否下载过某资源
select * from tbl_name where uid=$uid and did=$did
查询用户下载过那些资源
select * from tbl_name where uid=$uid
查询都有哪些用户下载了某资源
select * from tbl_name where did=$did
谢谢斑竹,受教了。