码迷,mamicode.com
首页 >  
搜索关键字:create datafile    ( 30138个结果
前端生成uuid
github下载地址: https://github.com/uuidjs/uuid 1. Install npm install uuid 2. Create a UUID (ES6 module syntax) import { v4 as uuidv4 } from 'uuid'; uuidv ...
分类:其他好文   时间:2021-04-24 11:48:35    阅读次数:0
对数据库的操作
# 查看所有的数据库SHOW DATABASES; # 选择某一个数据库USE bili; # 查看当前正在使用的数据库SELECT DATABASE(); # 创建一个新的数据库-- CREATE DATABASE douyu;-- CREATE DATABASE IF NOT EXISTS do ...
分类:数据库   时间:2021-04-22 16:33:38    阅读次数:0
45.系统后台--统计分析
目标:对学员登录数、学员注册数、课程播放数、每日课程数进行特定日期统计。画出上图。 一、数据库设计 statistics_daily CREATE TABLE `statistics_daily` ( `id` char(19) NOT NULL COMMENT '主键', `date_calcul ...
分类:其他好文   时间:2021-04-22 15:21:22    阅读次数:0
Oracle 删除用户时出现异常ora-01922: CASCADE must bu specified to drop 用户名
create user hnrh identified by hnrh123; Oracle 删除用户时出现异常ora-01922: CASCADE must bu specified to drop 用户名 Oracle 删除用户时出现错误ora-01922: CASCADE must bu sp ...
分类:数据库   时间:2021-04-21 12:53:00    阅读次数:0
JasperReports with Spring
1. Overview JasperReports is an open source reporting library that enables users to create pixel-perfect reports that can be printed or exported in ma ...
分类:编程语言   时间:2021-04-21 11:48:33    阅读次数:0
引用完整性
##引用完整性 学生表 Id 名字 性别 成绩表 Id 学生ID 成绩 Create table stu7( Id int primary key; Name varchar(50) ) Create table score( Id int primary key, Sid int, Score d ...
分类:其他好文   时间:2021-04-20 15:46:35    阅读次数:0
ZooKeeper客户端
命令基本语法 功能描述 help 显示所有操作命令 ls path [watch] 显示所有操作命令 ls path [watch] 查看当前节点数据并能看到更新次数等数据 create 普通创建, -s 含有序列, -e 临时(重启或者超时消失) get path [watch] 获得节点的值 s ...
分类:其他好文   时间:2021-04-20 15:33:29    阅读次数:0
docker 7 :docker基本操作
常用的基本操作列表 命令行 解释 创建container docker container create image_name 创建并运行container 及进入交互终端参数 docker container run -it image_id CMD -i 交互模式 -t 终端 -it 为分配一个 ...
分类:其他好文   时间:2021-04-20 15:28:37    阅读次数:0
Mysql高级编程_存储过程类型(in/out/inout)
简单实例: >存储过程,参数的传入! delimiter $ create procedure p1() begin declare i int default 10; select concat ('i的取值是:',i) as QuZhi; end $ delimiter $ create pro ...
分类:数据库   时间:2021-04-20 15:04:52    阅读次数:0
oracle创建用户
创建用户 SQL> conn sys/123456 as sysdba 已连接。 SQL> show user USER 为 "SYS" SQL> create user Irving identified by Irving; 用户已创建。 用户虽然创建了但是什么权限都没有 给用户授权后就能登陆 ...
分类:数据库   时间:2021-04-20 14:57:17    阅读次数:0
30138条   上一页 1 ... 22 23 24 25 26 ... 3014 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!