码迷,mamicode.com
首页 >  
搜索关键字:create db    ( 41927个结果
Django多数据库
Django版本2.2 Python版本3.7 第一步:在settings文件中配置多数据库 DATABASES = { # 'default': { # 'ENGINE': 'django.db.backends.sqlite3', # 'NAME': os.path.join(BASE_DIR, ...
分类:数据库   时间:2021-04-22 15:41:22    阅读次数: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
springboot整合mybatis
1、yml文件 #spring datasource spring.datasource.url=jdbc:mysql:///db_notice?serverTimezone=GMT%2B8&charactterEncoding=uft8 spring.datasource.username=roo ...
分类:编程语言   时间:2021-04-21 12:14:39    阅读次数:0
Django 项目文件介绍
-Django项目文件夹 --project文件夹 settings.py 配置文件 urls.py 路由与视图函数对应关系 (路由层) wsgi.py wsgiref模块(不考虑) --manage.py Django的入口文件 --db.splite3 django 自带的sqlite3数据库( ...
分类:其他好文   时间:2021-04-21 11:49:05    阅读次数: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
41927条   上一页 1 ... 29 30 31 32 33 ... 4193 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!