一:简单查询 1. and、or、not 如果and与or共同出现在where条件中,则and的优先级高。 查询remark不为null的记录 select * from student where remark is not null; 2. 模糊查询(like) 通配符:% 任意个数的任意字符 ...
分类:
数据库 时间:
2017-03-23 01:32:15
阅读次数:
238
Python3中的os模块提供了一个便携的方式去使用操作系统的相关功能 os.name 返回导入的操作系统相关模块的名字,如 posix(unix/linux),nt(windows)等 os.environ 返回当前系统环境变量 os.getcwd() 返回当前工作目录,即当前python脚本工作 ...
分类:
编程语言 时间:
2017-03-23 00:55:16
阅读次数:
225
Description Each New Year Timofey and his friends cut down a tree of n vertices and bring it home. After that they paint all the n its vertices, so th ...
分类:
其他好文 时间:
2017-03-22 22:56:14
阅读次数:
241
最近编译STM8S003时需要使用flash库函数,看起来简单,实则折腾了超过1天。今天总结方法如下: 1.修改stm8s.h 156行 #define RAM_EXECUTION 注释去掉 如果用的是COSMIC这个 可以不去 2、在project的source和include files中添加 ...
分类:
其他好文 时间:
2017-03-22 12:59:14
阅读次数:
1304
Merge Two Sorted Lists Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the fi ...
分类:
其他好文 时间:
2017-03-22 00:36:38
阅读次数:
181
TEX is a typesetting language developed by Donald Knuth. It takes source text together with a few typesetting instructions and produces, one hopes, a ...
分类:
其他好文 时间:
2017-03-21 22:47:50
阅读次数:
280
Leetcode-542-01 Matrix 542. 01 Matrix Add to List 542. 01 Matrix Add to List Add to List DescriptionSubmissionsSolutions DescriptionSubmissionsSolutio ...
分类:
其他好文 时间:
2017-03-21 22:09:43
阅读次数:
260
代码 public class TestSortedList { public static void Main() { // 创建一个SortedList对象 SortedList mySL = new SortedList(); mySL.Add("First", "Hello"); mySL. ...
分类:
其他好文 时间:
2017-03-21 21:49:43
阅读次数:
123
hosts所在文件夹: Windows 系统hosts位于 C:\Windows\System32\drivers\etc\hosts Android(安卓)系统hosts位于 /etc/hosts Mac(苹果电脑)系统hosts位于 /etc/hosts iPhone(iOS)系统hosts位于 ...
分类:
其他好文 时间:
2017-03-21 12:55:27
阅读次数:
173