12月点滴

Posted findtasy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12月点滴相关的知识,希望对你有一定的参考价值。

sql语法

1.生成随机整数  FLOOR( 500 + RAND() * (2000 - 500))        这个可生成500-2000之间随机整数

2.‘名字‘ as type     这样查询时可直接增加新列,注意名字是用双引号阔起来的

 

 SELECT
    cc.id,
        cc.`NAME`,
        cc.`home_image`,
        cc.ADDRESS,
        cc.shopowner_name,
        cc.opening_date,
        cc.start_date,
        cc.end_date,
        cc.type,
        cc.bonus_money
        FROM
        (SELECT
        c.id,
        c.`NAME`,
        c.`home_image`,
        c.ADDRESS,
        c.shopowner_name,
        c.opening_date,
        c.start_date,
        c.end_date,
        ‘五彩趣智慧生活馆‘ AS `type`,
        sd.today_bonus AS bonus_money
        FROM  company c
        LEFT JOIN shop_bonus_detailed sd
        ON c.id = sd.shop_id
        WHERE  sd.bonus_date = DATE_SUB(CURDATE(),INTERVAL 1 DAY)
        UNION ALL
        SELECT
        co.`ID`,
        co.`NAME`,
        co.`home_image`,
        co.ADDRESS,
        co.shopowner_name,
        co.opening_date,
        co.start_date,
        co.end_date,
        ‘便利店‘ AS `type`,
        cs.convenience_store_bonus_money
        FROM  convenience_store co
        LEFT JOIN convenience_store_bonus cs
        ON co.ID = cs.convenience_store_id
        WHERE  cs.bonus_date = DATE_SUB(CURDATE(),INTERVAL 1 DAY)
        ) cc

 

目前写过的最长sql












































以上是关于12月点滴的主要内容,如果未能解决你的问题,请参考以下文章

python学习点滴记录-Day12-前端基础之html

我的Thoughworks-Scrum经历点滴

[笨叔点滴12]面试必考:如果在中断处理函数里发生了缺页中断会怎样?为什么?

点滴记录—记录琐碎的知识点,日后研究

c指针点滴1

c语言指针点滴1