什么是MYSQL数据库 MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下产品。MySQL 是最流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是最好的 RDBMS (Relational Database Management Sy ...
分类:
数据库 时间:
2020-07-01 12:35:14
阅读次数:
71
A Ministry for Defense sent a general to inspect the Super Secret Military Squad under the command of the Colonel SuperDuper. Having learned the news, ...
分类:
其他好文 时间:
2020-06-30 22:37:23
阅读次数:
61
新增和更新 可以都通过 jsonb_set 实现 update 表名 set 列名 = (jsonb_set(列名::jsonb,'{key}','"value"'::jsonb,true)) where 条件 1 要注意里面的单引号和双引号 2 true 代表没有会新增,false 代表没有改项, ...
分类:
数据库 时间:
2020-06-30 10:26:08
阅读次数:
273
package LeetCode_128 /** * 128. Longest Consecutive Sequence * https://leetcode.com/problems/longest-consecutive-sequence/description/ * * Given an un ...
分类:
其他好文 时间:
2020-06-30 00:48:00
阅读次数:
48
之前我们已经了解了SQL语言的分类,可以划分为:DDL(数据定义语言)、DML(数据操纵语言)、DQL(数据查询语言)、DCL(数据控制语言)、TPL(事务处理语言)、CCL(指针控制语言),本文将介绍DQL。
分类:
数据库 时间:
2020-06-29 17:17:59
阅读次数:
146
创建数据库基本步骤 1) 修改当前数据库为master,以解决无法删除数据库问题-> if exists() 2) 如果存在数据库,则进行删除 -> drop database数据库名字 3) 创建数据库 -> create database数据库名字 4) 使用数据库 -> use 数据库名字 5 ...
分类:
数据库 时间:
2020-06-29 13:16:01
阅读次数:
108
Welcome!!! to my presentation !, About friendship, and growth. When i was little(靠过来正式), i used to make many friends. no matter who they are!, we can ...
分类:
其他好文 时间:
2020-06-29 00:51:57
阅读次数:
104
man 英文:manual 命令路径:/usr/bin/man 执行权限:所有用户 作用:获取命令或配置文件的帮助信息 语法:man [命令/配置文件] eg:man ls man services (查看配置文件时,不需要配置文件的绝对路径,只需要文件名即可) 调用的是more命令来浏览帮助文档, ...
分类:
系统相关 时间:
2020-06-28 20:43:13
阅读次数:
94
Oracle做insert或者update时未提交事务导致表锁定解决办法 //查看被锁定表有几个 select object_name,machine,s.sid,s.serial# from v$locked_object l,dba_objects o ,v$session s where l. ...
分类:
数据库 时间:
2020-06-28 18:22:04
阅读次数:
193
# -*- coding: utf-8 -*- # Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: https://docs.scra ...
分类:
其他好文 时间:
2020-06-28 09:23:45
阅读次数:
56