• 面试遇到的数据库考题


    /*根据购买的金额,将用户信息进行排列*/
    /*1.福州地区所有用户的销售额*/
    /*2.建立存储过程,计算积分*/

    insert into Customer values('001','zhangxq')
    insert into Customer values('002','zhuangys')
    insert into Customer values('003','zhuangys')

    update Customer set names='zhangxq' where uid='002'

    insert into Goods values('001','G01','25','100')
    insert into Goods values('002','G02','35','130')
    insert into Goods values('003','G03','25','100')
    use Shopping
    alter table Goods
    alter column
    goodsId varchar(51)

    update Goods set uid='002' where goodsId='G02'

    alter table Customer
    add
    address varchar(50)

    update Customer set address='fz' where uid='001'
    update Customer set address='xm' where uid='002'
    update Customer set address='fz' where uid='003'

    create table PromotionGood
    (
    goodsId varchar(51),
    IsPromotion int check(Ispromotion=0 or IsPromotion=1)
    )

    insert into PromotionGood values('G01','0')
    insert into PromotionGood values('G02','1')

    /*根据购买的金额,将用户信息进行排列*/
    /*1.福州地区所有用户的销售额*/
    /*2.建立存储过程,计算积分*/

    select *from Customer,Goods,PromotionGood

    declare @amount bigint
    set @amount = select sum(goodsAmount*goodPrice) from Goods where uid='001'
    select *from Customer
    select distinct c1.names from Customer c1,Customer c2 where c1.names<>c2.names

    select *from Customer as c1 where c1.names in(select names from Customer as c2 where c1.names=c2.names)
    select *from Customer as c1,Customer as c2  where c1.uid<>c2.uid and c1.uid in (select Goods.uid from  Goods,Customer where Goods.uid=Customer.uid and Customer.address='xm')

    select *from goods

    select sum(goodsAmount*goodPrice) from goods where goods.uid in( select Goods.uid from Customer,goods where Customer.uid=goods.uid and customer.address='fz')

     

    一些比较常用的操作。。。。哎怎么会忘记呢。。。

  • 相关阅读:
    ubuntu进入可视化界面
    MYSQL(一)
    PHP(一)
    MAC下安装NLTK
    初次使用NLTK
    iPhone项目的BaseSDK和DeploymentTarget
    ratelimit+redis+lua对接口限流
    java操作RabbitMq
    二维码生成并在下方添加文字,打包下载
    Redis六大淘汰策略:新来的员工不小心把Redis服务器撑爆了!!!
  • 原文地址:https://www.cnblogs.com/xianqingzh/p/1341785.html
Copyright © 2020-2023  润新知