Mysql为数据库管理系统(DBMS) 使用cmd登录: 先输入Mysql -h ip地址 -P 端口号 -u root -p,然后输入密码。 DDL:数据库定义语言。 DML:数据库操纵语言。 DQL:数据库查询语言。 DCL:数据库控制语言。 ##DDL: 查看已有数据库 show databa ...
分类:
数据库 时间:
2020-10-10 17:44:10
阅读次数:
23
Varnish 已经通过 Hitch 完整的支持 HTTP/2,以下是在 CentOS 8.0 中的实现示例。
分类:
Web程序 时间:
2020-08-27 11:48:40
阅读次数:
69
Given the root of a binary search tree with distinct values, modify it so that every node has a new value equal to the sum of the values of the origin ...
分类:
其他好文 时间:
2020-08-19 19:47:45
阅读次数:
64
ORACLE11203,对表新加一个时间字段,同时默认值为SYSDATE,我的本意是,原来的不管,后续插入记录时,使用SYSDATE记录插入时间。结果新增字段时,ORACLE却把原先表里存在的30万行记录也加上这个时间点. ORACLE什么思路,莫名其妙,,,Oracle还没那么智能,它无法判断出你的本意---“我的本意是,原来的不管,后续插入记录时,使用SYSDATE记录插入时间。”因为有些人的
分类:
数据库 时间:
2020-08-15 22:22:18
阅读次数:
78
mysql 5.7密码策略修改 1、查看当前的密码策略 show variables like 'validate_password%'; 2、密码策略的各项值 validate_password_dictionary_file:密码策略文件,策略为STRONG才需要 validate_passwo ...
分类:
数据库 时间:
2020-08-08 21:22:09
阅读次数:
98
一、基础 1.为某张表添加一列 alter table table_name add column_name column_type; 2.查看表的结构 desc table_name; 3.修改表中的列的类型、长度 alter table table_name modify column_name ...
分类:
其他好文 时间:
2020-08-05 19:44:23
阅读次数:
82
(题图:毕业旅行之决战青海湖)本文主要来源于小组内部的一个小的分享,这里整理成一篇文章po出来.题目叫“Shell助力开发效率提升”,更切题的应该是叫“命令行”提升开发效率,这里并没有讲到Shell编程,而是主要介绍Linux或者Mac下常用的一些基本工具命令来帮助处理一些日常事务.(其实之前这篇文章Mac软件推荐(续)之程序猿篇也大致提到了本文中的大部分内容)通过本文的介绍,你应该对相关命令有一
分类:
系统相关 时间:
2020-08-04 09:59:53
阅读次数:
88
忘记管理员登录密码:网址:http://www.sanshu.cn/tools/modify_wordpress_password/输入网址重新登录http://ip/wp-admin
分类:
其他好文 时间:
2020-08-03 09:46:32
阅读次数:
75
# coding=utf-8 # This script is uesd to modify Agent IP at the first time of machine started. import requests import json import time import os import ...
分类:
其他好文 时间:
2020-07-29 17:54:47
阅读次数:
80
DML:数据操纵语言 关键字:insert、update、delete 数据的插入 1、单行插入 语法: 方法一: insert into 表名 (字段1,字段2,...) values(值1,值2,...); 方法二: insert into 表名 set 字段一='值1',字段二='值二'; 注 ...
分类:
数据库 时间:
2020-07-23 22:59:56
阅读次数:
84