第一章 1.登录数据库系统 mysql –u root -p 2.查看已存在的数据库 SHOW DATABASES; 3.查看默认存储引擎 SHOW VARIABLES LIKE 'storage_engine'; 4.创建数据库 CREATE DATABASE school; 5.删除数据库 DR ...
分类:
数据库 时间:
2021-06-02 12:45:58
阅读次数:
0
1.cli模式下登录mysql mysql -uroot -p 然后执行 show processlist; 此命令可以查到mysql正在运行的一些进程,最前面有进程的id 2.使用mysqladmin杀死相应的id mysqladmin -uroot -p kill id ...
分类:
数据库 时间:
2021-06-02 12:40:28
阅读次数:
0
Linq的操作对象都是集合。 public partial class Form1 : Form { public Form1() { InitializeComponent(); int[] scores = { 90, 71, 82, 93, 75, 82 }; IEnumerable<int> ...
All packages need to be reinstalled under the new version (4.0). I had to first remove and then reinstall all the packages. The following worked for m ...
分类:
其他好文 时间:
2021-06-02 11:43:04
阅读次数:
0
两个表,表1 表2 如果要将 表1的数据并入表2用以下语句即可 insert into 表2(字段1,字段2) select 字段1,字段2 from b1 注意把字段名全部写清楚 select * into 新表名 from (select * from T1 union all select * ...
分类:
数据库 时间:
2021-06-02 11:23:15
阅读次数:
0
合并两个或多个select 语句的结果 条件: 前后select 语句的列必须数量一致,且列的类型,顺序要相同或相似 select union (默认去重,显示不同的行) select 》select 1中的第一列+select 2中的第一列==第一列union all 不去重 1+2 ...
分类:
其他好文 时间:
2021-06-02 10:46:55
阅读次数:
0
You have n boxes. You are given a binary string boxes of length n, where boxes[i] is '0' if the ith box is empty, and '1' if it contains one ball. In ...
分类:
其他好文 时间:
2021-06-02 10:37:12
阅读次数:
0
<template> <div class="hello"> <p v-show="isShow" style="color:red;font-size:25px;">{{str1}}</p> <p v-show="!isShow" style="color:green;font-size:25px ...
分类:
其他好文 时间:
2021-05-25 18:21:49
阅读次数:
0
环境:1主1从,Manager放在从库。主库:192.168.0.10从库:192.168.0.20 两台机器的mysql安装完成初始化以后进行复制搭建,首先登录主库(192.168.0.10),查看pos点:mysql> show master status; 然后在主库(192.168.0.10 ...
分类:
其他好文 时间:
2021-05-25 18:01:54
阅读次数:
0
前提条件是要设置secure_file_priv,该参数是需要重启实例的 mysql> show variables like '%secure%';+ + +| Variable_name | Value |+ + +| require_secure_transport | OFF || secu ...
分类:
数据库 时间:
2021-05-24 17:05:50
阅读次数:
0