1.使用主键约束主键约束要求主键列的数据唯一,并且不允许为空。1).单字段主键语法:字段名数据类型PRIMARYKEY[默认值]mysql>createdatabasetest01;#创建库QueryOK,1rowaffected(0.00sec)mysql>usetest01;#进入所创建的库Databasechangedmysql>createtabletest1->(
分类:
数据库 时间:
2020-04-16 15:13:29
阅读次数:
67
主键和外键的区别: 主键:用来区分同一张表中的数据,一条记录的唯一性 外键:用来约束附表中外键列的取值范围 场景:主表删除一行记录,如果该行的外键值被附表使用了,就无法删除,级联删除 解决:修改列定义 alter table tableName modify 列名 foreign key(xxx) ...
分类:
数据库 时间:
2020-04-15 10:54:17
阅读次数:
85
<!--miniprogram/pages/my/info/modify/cellphone/cellphone.wxml--> <button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">手机号码</button> ...
分类:
微信 时间:
2020-04-14 12:33:03
阅读次数:
180
#1.向表emp2的id列中添加PRIMARY KEY约束(my_emp_id_pk) ALTER TABLE emp2 MODIFY COLUMN id INT PRIMARY KEY;ALTER TABLE emp2 ADD CONSTRAINT my_emp_id_pk PRIMARY KEY ...
分类:
数据库 时间:
2020-04-07 20:10:05
阅读次数:
96
import os def file_name_modify(dir, dir_name): """修改文件名字""" # 获取文件夹目录列表 dir_list = os.listdir(dir) # 进入目录 os.chdir(dir) # 遍历列表 for file in dir_list: # ...
分类:
其他好文 时间:
2020-04-07 13:00:22
阅读次数:
105
原文地址:https://blog.phyer.cn/article/6884。新人博主,欢迎大家访问(●'?'●) 最近做毕设,一个电商网站,类似某宝某东。在学一些新的东西,#[Sass](https://github.com/sass/sass)和#[Vue](https://github.co ...
分类:
其他好文 时间:
2020-04-06 00:01:40
阅读次数:
307
文件搜索命令 文件搜索命令find 1.find 其他搜索命令 1.locate 2.which 3.grep ...
分类:
其他好文 时间:
2020-04-03 21:55:23
阅读次数:
69
from math import log import operator """ 函数说明:计算给定数据集的经验熵(香农熵) Parameters: dataSet:数据集 Returns: shannonEnt:经验熵 Modify: 2018-03-12 """ def calcShannonE ...
分类:
其他好文 时间:
2020-04-03 12:24:45
阅读次数:
81
Let's say we want to dynamiclly change some style in :before or :after element. We cannot use NgStyle, it doesn's support this use case, what we can d ...
分类:
编程语言 时间:
2020-03-31 09:15:16
阅读次数:
82
js页面写法如下,尝试过分个给值传值的方式,错误的: // $.ajax({// (1) url:"/update",// type:"post",// // data:$("#update").serialize()+"&_method=put",// (2) // url:"/update",/ ...
分类:
其他好文 时间:
2020-03-30 09:23:38
阅读次数:
94