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.
11 lines
278 B
11 lines
278 B
SELECT
|
|
lc.createTime 创建时间,
|
|
lc.wxMpOpenid 微信openid,
|
|
lc.nick 用户昵称,
|
|
lc.mobile 用户电话,
|
|
lc.realName 真实姓名,
|
|
lcb.name 推荐支行
|
|
FROM lpk_customer lc
|
|
left join lpk_customer_bank lcb on lcb.sid=lc.customerBankSid
|
|
ORDER BY lc.createTime
|
|
|
|
|