摘要: https://www.cnblogs.com/wangweizhang/p/10251758.html 阅读全文
posted @ 2020-12-12 20:12 Julian_jiang 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: 使用关键字:NULLS FIRST,NULLS LAST 空值在前: SELECT DATAFROM TABLEORDER BY 1 NULLS FIRST 控制在后: SELECT DATAFROM TABLEORDER BY 1 NULLS LAST 阅读全文
posted @ 2020-12-11 08:59 Julian_jiang 阅读(177) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/andy6/p/6158429.html 点击跳转 阅读全文
posted @ 2020-12-11 08:48 Julian_jiang 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 转载链接 阅读全文
posted @ 2020-12-10 16:37 Julian_jiang 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 一、语法: TRANSLATE(string,from_str,to_str) 二、目的 返回将(所有出现的)from_str中的每个字符替换为to_str中的相应字符以后的string。TRANSLATE 是 REPLACE 所提供的功能的一个超集。如果 from_str 比 to_str 长,那 阅读全文
posted @ 2020-12-10 16:24 Julian_jiang 阅读(1089) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/jgmydsai/article/details/25893409 阅读全文
posted @ 2020-12-09 14:39 Julian_jiang 阅读(37) 评论(0) 推荐(0) 编辑
摘要: create or replace 表示在创建视图时,如果已存在同名的视图,则重新创建, 如果只用create 创建,则需将原有的视图删除后才能创建. create 如果创建已经存在,会报一个错误 -‘对象已存在’ create or replace 则不会报错,如果创建已存在,它会先删除原来的,然 阅读全文
posted @ 2020-12-09 10:02 Julian_jiang 阅读(1421) 评论(0) 推荐(0) 编辑
摘要: https://barneyzhao.gitee.io/typing-cn/#/monkey https://typetest.io/ https://typing.works/ https://typings.gg/ https://monkeytype.com/ 阅读全文
posted @ 2020-12-09 00:14 Julian_jiang 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: 定义:escape关键字经常用于使某些特殊字符,如通配符:'%','_'转义为它们原来的字符的意义,被定义的转义字符通常使用'\',但是也可以使用其他的符号。 实例: SELECT * FROM TABLE WHERE NAME LIKE '%_%'; NAME aa_a aaa SELECT * 阅读全文
posted @ 2020-12-08 11:49 Julian_jiang 阅读(1103) 评论(0) 推荐(0) 编辑
摘要: 迭代器和生成器.MDN(MDN中的官方文档解释) JavaScript数组迭代(遍历)方法 (思否中一篇很好的贴子) 阅读全文
posted @ 2020-12-04 21:32 Julian_jiang 阅读(48) 评论(0) 推荐(0) 编辑