码迷,mamicode.com
首页 >  
搜索关键字:oracle oracle_sid dbname instance_name    ( 41637个结果
MySQL——选择数据库
从命令提示窗口中选择MySQL数据库 语法:USE 数据库名; 使用PHP脚本选择MySQL数据库 语法:mysqli_select_db(connection,dbname); 规定要使用的MySQL连接(必须) 规定要使用的默认数据库(必须) 举个例子 <?php header("content ...
分类:数据库   时间:2021-02-15 12:19:21    阅读次数:0
MySQL——连接
使用mysql二进制方式连接 mysql -u root -p 使用PHP脚本连接MySQL mysqli_connect(host,name,password,dbname,port,socket); host 规定主机或IP地址 username 规定MySQL用户名 password 规定My ...
分类:数据库   时间:2021-02-15 12:08:49    阅读次数:0
Oracle 连接配置
spring.datasource.url=jdbc:oracle:thin:@localhost:1521:orclspring.datasource.username=zhouriyuespring.datasource.password=13768184197spring.datasource ...
分类:数据库   时间:2021-02-15 11:56:11    阅读次数:0
codecheckServer Sonar
s SonarQube搭建手记 https://www.cnblogs.com/throwable/p/12907785.html sonarqube代码质量检测平台搭建 https://www.cnblogs.com/lixianguo/p/12518524.html 自SonarQube的7.9 ...
分类:其他好文   时间:2021-02-15 11:46:40    阅读次数:0
表连接方法
Oracle表连接方法有四种: 排序合并连接(Sort Merge Join) 嵌套循环连接(Nested Loops Join) 哈希连接(Hash Join) 笛卡尔积(Cartesian Product) 排序合并连接(Sort Merge Join) 排序合并连接是将连接的两个表使用连接列排 ...
分类:其他好文   时间:2021-02-09 12:42:10    阅读次数:0
oracle 用户解锁和修改用户密码
1.安装教程参看:https://jingyan.baidu.com/article/3c48dd34be2a32e10be35881.html 2.用户解锁 --> 运行cmd --> 输入sqlplus / as sysdba 后回车,以超级管理员身份登录 --> 输入alter user 账户 ...
分类:数据库   时间:2021-02-09 12:40:40    阅读次数:0
重要的sql语句
1:oracle 分页 select * from (select t.*, rownum rn from (select * from menu order by id desc) t where rownum < 10) where rn >=5 2: mysql 分页 select * fro ...
分类:数据库   时间:2021-02-09 12:24:17    阅读次数:0
springboot配置多数据源
首先是一个正常能运行的springboot项目 目前我这的要求是springboot配置了3个数据源(1.本地的mysql,2远程的mysql,3远程的oracle) 第一步:在pom.xml文件中导入依赖 <!--多数据源--> <dependency> <groupId>mysql</group ...
分类:编程语言   时间:2021-02-09 11:55:55    阅读次数:0
Oracle rownum和row_number()
rownum 和 row_number()的区别 一、 Oracle中的rownum 用于从查询返回的行的编号,返回的第一行分配的是1,第二行是2,依次类推。这个伪字段可以用于限制查询返回的总行数,而且rownum不能以任何表的名称作为前缀。 rownum对于等于某值的查询条件 如果希望找到学生表中 ...
分类:数据库   时间:2021-02-08 12:51:03    阅读次数:0
indexedDB基本使用demo
<html> <head> <script src="jquery-3.5.1.js"></script> </head> <body> <script> createOrOpenDb("teamtalk"); //新建或打开已有数据库 function createOrOpenDb(dbName) ...
分类:数据库   时间:2021-02-08 12:14:15    阅读次数:0
41637条   上一页 1 ... 23 24 25 26 27 ... 4164 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!