基于银行数据库查找练习

--3.8 a 找出银行中所有有账户但无贷款的客户

select distinct customer_name from depositor where customer_name not in(
    select customer_name from borrower
)
--下面这个自动去掉了重复值的情况 不需要加distinct
select customer_name from depositor
except
select customer_name from borrower

--3.8 b 找出与“Smith”居住在同一个城市、同一个街道的所有客户的名字

select  customer_name from customer where customer_city in(
    select customer_city from customer where customer_name='Smith'
) and customer_street in(
    select customer_street from customer where customer_name='Smith'
)

--3.8 c 找出所有支行的名称,在这些支行中都有居住在“Harrion”的客户所开设的账户  

    select distinct branch_name from account join depositor on(account.account_number=depositor.account_number)
    where customer_name in(
        select customer.customer_name from customer
        where customer_city='Harrison'
    )

    select distin

  • 3
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值