使用的数据库 MariaDB 10.5.4版本 端口1054 数据库为jt_db,表 为user 数据库的建表和插入相关数据代码: create table user( id int primary key auto_increment, username varchar(50), password ...
分类:
数据库 时间:
2020-07-03 21:36:13
阅读次数:
69
create table sanguo(id int primary key auto_increment,name varchar(30),gender enum('男','女'),country enum("魏","蜀","吴"),attack smallint,defense tinyint) ...
分类:
数据库 时间:
2020-07-03 19:13:13
阅读次数:
71
创建表:CREATE TABLE T_Person(FName VARCHAR(20),FAge NUMBER(10) DEFAULT '20',FId INT NOT NULL,PRIMARY KEY('FId'))CREATE TABLE T_Employee(EName VARCHAR(20) ...
分类:
数据库 时间:
2020-07-03 15:51:12
阅读次数:
73
Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters. Please note that the string ...
分类:
其他好文 时间:
2020-07-03 10:41:10
阅读次数:
59
select * from emp for update; select * from dept for update; select a.*,b.* from emp a left join dept b on a.deptno=b.deptno and a.deptno = 0 where b. ...
分类:
数据库 时间:
2020-07-02 22:01:50
阅读次数:
74
什么是约束? 约束是数据库中保证数据完整性的方法 1.实体完整性 列如:每个表中有一个必须要指定的字段 2.区域完整性 针对表中的某个字段进行特殊化限制 3.参照完整性 表与表之间的一种特殊化关联限制 约束类型(6): 1.主键约束(PRIMARY KEY) 确定表中的标识列(主键字段不能为空,必须 ...
分类:
数据库 时间:
2020-07-02 19:44:34
阅读次数:
60
情形一,有RMAN备份 1.构造坏块 SQL> select segment_name , header_file , header_block,blocks 2 from dba_segments where segment_name ='TESTC' and owner='SCOTT'; SEG ...
分类:
数据库 时间:
2020-07-02 16:38:57
阅读次数:
62
记录下webpack-dev-server的用法. 首先,我们来看看基本的webpack.config.js的写法 module.exports = { entry: './src/js/index.js', output: { path: './dist/js', filename: 'bundl ...
分类:
Web程序 时间:
2020-07-02 16:20:47
阅读次数:
98
设计表如下 --收入表 CREATE TABLE income ( inid INT PRIMARY KEY IDENTITY(1, 1), indate DATETIME, --时间 intype VARCHAR(10), -- 收入类型 amount DECIMAL(18, 2) --金额 ) ...
分类:
数据库 时间:
2020-07-02 10:45:44
阅读次数:
58
alter system set deferred_segment_creation=false; select 'alter table '||table_name||' allocate extent;' from user_tables where segment_created='NO' 处 ...
分类:
数据库 时间:
2020-07-01 20:14:12
阅读次数:
63