USE TESTGO --紧急联系人--删除原有约束--ALTER TABLE test drop constraint DF_TEST_JJLXR --添加约束ALTER TABLE test add constraint DF_TEST_JJLXR DEFAULT '' for JJLXR -- ...
分类:
数据库 时间:
2021-03-12 14:40:49
阅读次数:
0
mySQL mySQL 数据库操作 创建数据库 修改数据库 查看数据库的字符集和校验规则 删除数据库 查看所有数据库 查看正在使用的数据库 切换数据库 数据库表操作 创建数据表 数据类型 单表约束分类 查看所有表 查看表结构信息 删除表 修改表 修改表:添加列 修改表:修改列类型,长度和约束 修改表 ...
分类:
数据库 时间:
2021-03-11 13:02:17
阅读次数:
0
查看数据表的信息,只能算是优化用户体验 --用户表 if exists(select * from sysobjects where name = 'bi_user') drop table bi_user create table bi_user ( user_id int not null pr ...
分类:
其他好文 时间:
2021-03-01 13:44:56
阅读次数:
0
InfluxDB操作 1. 显示数据库 > show databases > create database test > drop database test 2. 显示说有表 > show measurements InfluxDB数据备份和恢复 备份元数据 1、influxd backup - ...
分类:
数据库 时间:
2021-03-01 13:29:57
阅读次数:
0
最左匹配原则 DROP TABLE IF EXISTS employees; CREATE TABLE employees( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT '姓 ...
分类:
数据库 时间:
2021-02-27 13:21:23
阅读次数:
0
https://mp.weixin.qq.com/s/WRChpQqtvrRTfT5IWXDndg 前言 官网:Mybatis-plus官方文档 简化 MyBatis ! 创建数据库 数据库名为mybatis_plus 创建表 创建user表 DROP TABLE IF EXISTS user;CR ...
分类:
其他好文 时间:
2021-02-26 13:24:28
阅读次数:
0
用户主题宽表 类似累积事实表 drop table if exists dwt_user_topic; create external table dwt_user_topic ( user_id string comment '用户 id', login_date_first string com ...
分类:
其他好文 时间:
2021-02-26 13:12:24
阅读次数:
0
1、开发犯低级错误怎么办? 开发首先要规范好编码,出低级错时不要指责,内心指出错误。让他们自己进行测试,反思找出错误。 2、你进行过哪些测试,擅长什么? 我主要从事web测试,搭建环境,对程序进行集成测试、系统测试、回归测试。还有编写测试用例,使用手册,功能测试文档。单元测试:测试的最早期阶段,焦点 ...
分类:
其他好文 时间:
2021-02-25 12:03:01
阅读次数:
0
一、Mybatis层 数据库 CREATE DATABASE `ssmbuild`; USE `ssmbuild`; DROP TABLE IF EXISTS `books`; CREATE TABLE `books` ( `bookID` INT(10) NOT NULL AUTO_INCREME ...
分类:
其他好文 时间:
2021-02-24 12:59:25
阅读次数:
0
windows服务 unit untserverinfo; interface uses Windows, Messages, SysUtils, Classes, Forms, WinSvc, SvcMgr, System.Win.Registry; function ServiceGetStat ...