model(数据库模型) ORM 表与表之间的关系(两张表) 一对多 多对多 一对一 ORM object relation mapping python的类 class emp(): id=。。。 name=。。。 《 》 表 salary=。。。 e=emp() e.id 单表操作 表记录的添加 ...
分类:
数据库 时间:
2020-06-01 12:22:04
阅读次数:
100
大家可能平时不太关注Oracle中的函数方法,只记得常用的一些,今天谭谭就遇到了一个没用过的函数,在此记录一下 INSTR( string, substring [, start_position [, nth_appearance ] ] ) 就是判断原字符串 string 是否包含子字符串 su ...
分类:
数据库 时间:
2020-06-01 01:05:46
阅读次数:
107
name: Jack ; salary: 12000 name :Mike ; salary: 12300 name: Luk ; salary: 10030 name :Tim ; salary: 9000 name: John ; salary: 12000 name: Lisa ; salar ...
分类:
编程语言 时间:
2020-05-31 16:12:47
阅读次数:
104
1.查询单个字段 select last_name from employees; 2.查询多个字段 select last_name,salary,email from employees; 3.查询所有字段 select * from employees; 4.查询常量值 select 100; ...
分类:
数据库 时间:
2020-05-29 23:08:58
阅读次数:
92
删除链表中倒数第n个结点 题目:LeetCode19 Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked list: 1->2->3->4- ...
分类:
其他好文 时间:
2020-05-29 09:26:32
阅读次数:
50
1.定义一系列的算法 2.将这些算法封装起来 3.可以让它们相互替换 const EmployeeA = function(){}EmployeeA.prototype.calculate = function(salary){ return salary * 4;}const EmployeeB ...
分类:
Web程序 时间:
2020-05-28 22:00:46
阅读次数:
96
前言 简单记录insert命令的使用 用法 insert into INSERT INTO student(NAME, salary, created_at) VALUES('xing', 900, CURDATE()); insert into values 需要添加所有列的值 INSERT IN ...
分类:
数据库 时间:
2020-05-27 18:45:32
阅读次数:
66
[抄题]: Given a binary search tree and the lowest and highest boundaries as L and R, trim the tree so that all its elements lies in [L, R] (R >= L). You ...
分类:
其他好文 时间:
2020-05-23 09:45:44
阅读次数:
50
:nth-child是css3的一个比较常用的选择器。它用于匹配属于其父元素中的子元素,不论元素的类型。 它的参数可以是数字、关键词或公式。下面讲介绍它的使用方法, nth-child的使用 html结构如下: <div class="demo"> <p>1</p> <p>2</p> <p>3</p ...
分类:
Web程序 时间:
2020-05-18 14:24:11
阅读次数:
83
比较运算符 > < <= >= <> != select * from employee where sex='male'; select * from employee where id>10; select * from employee where salary between 10000 a ...
分类:
其他好文 时间:
2020-05-16 00:33:25
阅读次数:
212