码迷,mamicode.com
首页 >  
搜索关键字:create table    ( 57379个结果
java8新特性CompletableFuture
public class Main { public static void main(String[] args) throws Exception { // 两个CompletableFuture执行异步查询: CompletableFuture<String> cfQueryFromSina ...
分类:编程语言   时间:2021-04-21 12:05:09    阅读次数: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
邮箱(outlook)嵌入html页面
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>邮件模板</title> </head> <body> <table width="1024" border="0" cellspacing="0" cellp ...
分类:Web程序   时间:2021-04-21 11:46:08    阅读次数: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
索引优化
索引优化 1.1SQL性能下降的原因 查询语句写的很不好; 索引失效 单值索引 select * from user where name=''; create index idx_user_name on user(name); 复合索引 select * from user where name ...
分类:其他好文   时间:2021-04-20 14:31:28    阅读次数:0
大二下学期团队项目(app页面绘制)
今日主要绘制了首页,圆盘页面,个人页面 效果如下: 今日也了解了获取验证码登录的部分,在网上了解到需要短信平台的接口,在网上找了几个但是注册需要营业执照, 验证码只能暂时搁置,只有一个代码框架,没有实际功能: package com.example.cloudlibrary; import andr ...
分类:移动开发   时间:2021-04-20 14:21:22    阅读次数:0
57379条   上一页 1 ... 43 44 45 46 47 ... 5738 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!