创建外键: 以上我们就在userinfo中创建了一个外键关联usergroup通过uid字段,且默认用户的组是uid为1的组。 查询:通过userinfo调用usergroup的信息, obj = models.userinfo.objects.first() obj.usergroup是一个use ...
分类:
数据库 时间:
2018-10-13 02:34:11
阅读次数:
237
1.处理一下文件内容,将域名提取并根据域名进行数据排序处理 [root@salt-master test]# cat oldboy.txt http://www.etiantian.org/index.htmlhttp://www.etiantian.org/1.htmlhttp://post.et ...
分类:
其他好文 时间:
2018-10-13 02:32:30
阅读次数:
174
删除约束注意: 网上说是 ALTER TABLE 表名 DROP CONSTRAINT 约束名; 这里的CONSTRAINT 是指primary key,foreign key,unique,等实际的约束,删除的时候需要用对应的替换(注意:唯一性约束用 INDEX) ...
分类:
数据库 时间:
2018-10-10 22:01:29
阅读次数:
287
1、创建表 1 是否可以为控制、null 表示可以为空值、not null 表示不可以为空值 2 not null -不可以为空值 3 null - 可以为空值 1 自增,如果为某列设置自增列,插入数据时无需设置此列,默认将自增。(表中只能有一个自增列) 2 create table class( ...
分类:
数据库 时间:
2018-10-07 20:51:51
阅读次数:
229
http://poj.org/problem?id=1251 The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads ...
分类:
其他好文 时间:
2018-10-05 12:16:56
阅读次数:
150
1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 int main () 9 { 10 int N; 11 while(cin >> N && N != 0) 12 { 13 map m; 14 whil... ...
分类:
其他好文 时间:
2018-09-29 15:25:49
阅读次数:
147
-- 查询外键 涂聚文 (Geovin Du) select concat(table_name, '.', column_name) as 'foreign key', concat(referenced_table_name, '.', referenced_column_name) as 'r... ...
分类:
数据库 时间:
2018-09-28 17:34:23
阅读次数:
196
常用的字段数据类型: .字符串(varchar2(n)) n表示保存最大长度,基本200作用。.整数(number(n)) n位的整数,也可用int代替.小数(number(n,m)) m为小数位,n-m为整数位,有时候用float代替.日期(date) 存放日期.大文本(clob) 存储海量文字( ...
分类:
其他好文 时间:
2018-09-28 01:29:45
阅读次数:
198
>netstat -aon | findstr “80″ Proto Local Address Foreign Address State PID TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 1688 可以看出80端口被进程号为1688的程序占用. >tasklist | ...
#encoding: utf-8 from sqlalchemy import create_engine,Column,Integer,String,Float,func,and_,or_,Text,\ ForeignKey from sqlalchemy.ext.declarative impo... ...
分类:
数据库 时间:
2018-09-24 00:45:05
阅读次数:
170