A number that will be the same when it is written forwards or backwards is known as a Palindromic Number . For example, 1234321 is a palindromic numbe ...
分类:
其他好文 时间:
2020-03-26 01:01:00
阅读次数:
67
Problem : Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: E ...
分类:
其他好文 时间:
2020-03-25 23:26:15
阅读次数:
73
首先我们创建数据库表: CREATE TABLE `t_demo` ( `id` int(32) NOT NULL, `name` varchar(255) DEFAULT NULL, `age` int(2) DEFAULT NULL, `num` int(3) DEFAULT NULL, PRI ...
分类:
数据库 时间:
2020-03-25 21:51:01
阅读次数:
95
? 今天给大家送上两个SQL查询的方法,也许在项目中你都用过,但是,没关系,仅仅记录下,以便后面不用去查找。针对与经常写SQL的同行来说,应该是非常简单的。 查询表结构数据 SELECT t.COLUMN_NAME AS fieldName, ( CASE WHEN t.IS_NULLABLE = ...
分类:
数据库 时间:
2020-03-25 21:39:27
阅读次数:
74
7. 存储过程 7.1 简介 7.1.1 定义 所谓存储过程,就是一段存储在数据库中执行某块业务功能的程序模块。 它是由一段或者多段的PL/SQL代码块或者SQL语句组成的一系列代码块。 7.1.2 结构分析 create [or replace] :如果存储过程已经存在则覆盖替代原有的过程。 pr ...
分类:
数据库 时间:
2020-03-24 15:41:52
阅读次数:
73
Git does not apply deleted files when merging an old branch into the master. How can I tell Git to apply deleted files? The only way I can fathom this ...
分类:
移动开发 时间:
2020-03-23 16:40:27
阅读次数:
82
用 2 个题来应用 left join, inner join, group by + having, case when 的用法等. ...
分类:
数据库 时间:
2020-03-22 20:09:09
阅读次数:
100
1018 Public Bike Management (30分) There is a public bike service in Hangzhou City which provides great convenience to the tourists from all over the w ...
分类:
其他好文 时间:
2020-03-22 15:52:07
阅读次数:
71
[toc] SQL是数据分析中最高频的操作之一,本文梳理常见的SQL错误,可以归为三大类: 语法类; 函数类; 逻辑类; 语法错误 标点错漏 e.g. 逗号多或缺,引号、括号等不成对,多余的空格等; e.g. case when … end函数,有时候少写end e.g. select含有 聚合函数 ...
分类:
数据库 时间:
2020-03-22 10:48:10
阅读次数:
212
TL;DR: Typora requires Pandoc (≥ v1.20). If you do not have Pandoc or only old version of Pandoc installed on your machine, you could: Download instal ...
分类:
其他好文 时间:
2020-03-22 10:35:00
阅读次数:
97