不知道你的购物车信息 都包括什么 包括用户基本信息吗
你的表结构很清晰了
--用户信息
select * from web_users where id = '想要查询的用户id'
--商品信息
select * from shoppingcart_tb where userid = '想要查询的用户id'
--所有信息
select * from web_users t1
left join shoppingcart_tb t2
on t1.id = t2.userid
就是这样了 想插入哪些字段就直接insert 就可以了
不知道你的购物车 都有哪些字段 shoppingcart_tb 是购物车吗? 如果这个是购物车 你从哪里查数据呢
你的描述是获取 购物车信息 从哪获取 这几个表看不明白