基于银行数据库查找练习

这篇博客展示了如何使用SQL查询银行数据库,包括找出没有贷款的客户、同住一个地区的客户、特定城市客户开设账户的支行、在所有Brooklyn支行有账户的客户以及计算银行贷款总额,并找出资产超过Brooklyn任一支行的支行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

--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
       &n

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值