zoukankan      html  css  js  c++  java
  • Sql练习201908210951

    表结构:

    create table SalePlan 
    (
        PlanId int identity(1,1) primary key,
        GoodsId int,
        PlanPrice decimal(18,2)
    );
    go
    
    create table Goods 
    (
        GoodsId int identity(1,1) primary key,
        Price decimal(18,2)
    );
    go

    原始数据:

    insert into Goods(Price)
    values(100);
    insert into Goods(Price)
    values(200);
    insert into Goods(Price)
    values(300);
    insert into Goods(Price)
    values(400);
    insert into Goods(Price)
    values(500);
    go
    
    insert into SalePlan
    values(1,0);
    insert into SalePlan
    values(2,0);
    insert into SalePlan
    values(3,0);
    insert into SalePlan
    values(4,0);
    insert into SalePlan
    values(5,0);
    go

    一条语句将销售计划的销售金额修改为商品表的价格:

    update s set s.PlanPrice = g.Price from SalePlan s,Goods g where s.GoodsId = g.GoodsId;
    go

    最终结果:

    完成.

    2015年10月-2016年3月 总计:5个月.
    2016年11月-2017年6月 总计:7个月.
    2017年7月-2018年4月 总计:9个月.
    2018年5月-2018年5月 总计:1个月.
    2018年6月-2018年12月 总计:6个月.
    2019年1月-2019年12月 总计11个月.
    2020年2月-2021年2月 总计13个月.
    所有总计:5+7+9+1+6+11+13=52个月(4年4个月).
    本人认同二元论.我是理想主义者,现实主义者,乐观主义者,有一定的完美主义倾向.不过,一直都是咸鱼(菜鸟),就算有机会,我也不想咸鱼翻身.(并不矛盾,因为具体情况具体分析)
    英语,高等数学,考研,其他知识学习打卡交流QQ群:946556683
  • 相关阅读:
    替换OSD操作的优化与分析
    Centos7下Jewel版本radosgw服务启动
    如何统计Ceph的RBD真实使用容量
    Ceph中的Copyset概念和使用方法
    Proftp最简匿名访问配置
    Windows could not set the offline local information.Error code:0X80000001解决方法
    《一百岁感言》 杨绛
    取扑克牌的问题
    马云的懒人理论
    明代地图总目
  • 原文地址:https://www.cnblogs.com/JimmySeraph/p/11387088.html
Copyright © 2011-2022 走看看