以下是我对 模型类的一些探索,我原本是做 开发的,所以在接触 的模型类的时候,多多少少受到了固有思维的影响。现在把我的探索记录下来,也分享给大家。如有问题,还请多多指正。 基础代码如下: 同时,我使用mysql的查询日志记录,想知道什么时候,网站访问了数据库。 模型类的使用 模型类只有在使用的时候, ...
分类:
其他好文 时间:
2020-05-16 00:24:14
阅读次数:
65
1、Series obj = pd.Series([4, 7, -5, 3]) #创建series obj.values #获取值 obj.index #获取索引 obj2 = pd.Series([4, 7, -5, 3], index=['d', 'b', 'a', 'c']) #指定索引创建S ...
分类:
编程语言 时间:
2020-05-16 00:10:28
阅读次数:
77
Warning This function has been DEPRECATED as of PHP 7.2.0. Relying on this function is highly discouraged. 说明 each ( array &$array ) : array 返回数组中当前的键 ...
分类:
移动开发 时间:
2020-05-15 15:29:58
阅读次数:
100
说明 array_udiff ( array $array1 , array $array2 [, array $... ], callable $value_compare_func ) : array 使用回调函数比较数据,计算数组的不同之处。和 array_diff() 不同的是,前者使用内置 ...
分类:
编程语言 时间:
2020-05-15 13:31:01
阅读次数:
60
1.根据值返回对应的键(当有多个相同值时,只返回第一个值对应的键) dict={2:1,3:9,4:5} list(dict.keys())[list(dict.values()).index(1)] 结果:2 2.根据最小值返回对应的键 #方法一dict={2:1,3:9,4:5} min(dic ...
分类:
编程语言 时间:
2020-05-14 11:38:21
阅读次数:
307
string sql = string.Format(@"insert into Table(FileSize,FileType,FilePath,FileExtName,OldFileName,NewFileName,FileHash,CreateTime,DeleteFlag) values(@ ...
分类:
数据库 时间:
2020-05-14 11:30:34
阅读次数:
75
单条插入(oracle) 通常我们执行一个inser语句,即使有返回,也只是会返回影响了多少条数据 @insert("insert into t_user (id,name) values (suser.nextval,#{item.name,jdbcType=VARCHAR})") void in ...
分类:
其他好文 时间:
2020-05-14 01:16:24
阅读次数:
60
//增加 insert into a(name,score) values() //删除 delete from biao where 字段 truncate biao //更新数据 update biao set 字段=新 //查询数据 select ziduan from biao where ...
分类:
数据库 时间:
2020-05-13 12:11:21
阅读次数:
67
Given a binary tree, return the vertical order traversal of its nodes' values. (ie, from top to bottom, column by column). If two nodes are in the sam ...
分类:
其他好文 时间:
2020-05-13 09:40:41
阅读次数:
65
一、数据的插入 1、插入的关键字:INSERT INTO,在某些SQL实现中,可以去掉INTO关键字,不过最好还是提供INTO这个关键字,保证SQL代码可移植性。 2、插入的方式: 插入完整的行 示例代码如下: 存储在table_name表中每一列的数据在VALUES子句中给出,必须给每一列提供一个 ...
分类:
数据库 时间:
2020-05-13 00:36:15
阅读次数:
92