基础知识 SQL语句的编写规则: SQL语句不区分大小写(Oracle如此, MySQL区分) 可以在一行或者多行数据SQL语句 子句通常放在单独的行上 缩进用于增强可读性 SQL语句使用分号终止 正规写法中,所有的关键字使用大写,列名和表名使用小写。 列头(字段头)的对齐方式: SQL Devel ...
分类:
数据库 时间:
2021-05-04 15:43:14
阅读次数:
0
Computer Networking: a Top-Down Approach (8th ed.) : Select Lectures Notes Navigator 1 Resources and Introduction 2 Chapter 1: Introduction 3 Chapter ...
分类:
Web程序 时间:
2021-05-04 15:21:01
阅读次数:
0
#!/bin/bash while read linedo echo $line txt=`echo $line |awk -F' ' '{print $1}'` id=`echo $line|awk -F' ' '{print $3}'` echo $txt echo $id sed "s/ws2 ...
分类:
系统相关 时间:
2021-05-03 12:39:24
阅读次数:
0
ControlTemplate用于描述控件本身. 使用TemplateBinding来绑定控件自身的属性, 比如{TemplateBinding Background}DataTemplate用于描述控件的Content. 使用Binding来绑定数据对象的属性, 比如{Binding Person ...
all privileges权限有哪些: select, insert, update, delete, create, drop,references, index,alter,create temporary tables,lock tables,execute,create view,show ...
分类:
数据库 时间:
2021-05-03 12:11:00
阅读次数:
0
govendor简介 golang工程的依赖包经常使用go get命令来获取,例如:go get github.com/kardianos/govendor ,会将依赖包下载到GOPATH的路径下。 常用的依赖包管理工具有godep,govendor等,在Golang1.5之后,Go提供了 GO15 ...
分类:
其他好文 时间:
2021-05-03 12:03:26
阅读次数:
0
crontab 用于设置定时任务,通过 cat /etc/crontab 可查看 crontab 示例: $ cat /etc/crontab SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # For details s ...
分类:
其他好文 时间:
2021-05-03 11:54:27
阅读次数:
0
Android logd日志原理 http://gityuan.com/2018/01/27/android-log/ 一.先看上层 1.1. 布局 KEY private static final String SELECT_LOGD_SIZE_KEY = "select_logd_size"; ...
分类:
移动开发 时间:
2021-05-03 11:48:30
阅读次数:
0
有时候需要做个某些服务的状态监控,用钉钉机器人发通知挺方便的。可以用shell脚本配合crontab检测状态,检测到异常就调用python脚本发起告警。 python内容 此处用的python3,需要先安装requests模块。pip install requests -i https://mirr ...
分类:
编程语言 时间:
2021-04-30 12:35:08
阅读次数:
0
https://blog.csdn.net/qidasheng2012/article/details/84938702 目录 简介语法注意事项 简介 如果我们需要将两个select语句的结果作为一个整体显示出来,我们就需要用到union或者union all关键字。union(或称为联合)的作用是 ...
分类:
其他好文 时间:
2021-04-30 12:17:17
阅读次数:
0