码迷,mamicode.com
首页 >  
搜索关键字:show all    ( 41857个结果
MySQL常用命令记录
第一章 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
终止正在导入数据的mysql语句
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
[C#]上课笔5月27日,Linq的使用方法
Linq的操作对象都是集合。 public partial class Form1 : Form { public Form1() { InitializeComponent(); int[] scores = { 90, 71, 82, 93, 75, 82 }; IEnumerable<int> ...
分类:Windows程序   时间:2021-06-02 12:28:38    阅读次数:0
All packages need to be reinstalled under the new version (4.0). I had to first remove and then reinstall all the packages.
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
使用sql语句将数据库中的一个表里的数据导入到另一个表中
两个表,表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
union操作符
合并两个或多个select 语句的结果 条件: 前后select 语句的列必须数量一致,且列的类型,顺序要相同或相似 select union (默认去重,显示不同的行) select 》select 1中的第一列+select 2中的第一列==第一列union all 不去重 1+2 ...
分类:其他好文   时间:2021-06-02 10:46:55    阅读次数:0
Leetcode 1769. Minimum Number of Operations to Move All Balls to Each Box
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
vue-生命周期
<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
快速搭建MHA
环境: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
mysql select into方式导入导出
前提条件是要设置secure_file_priv,该参数是需要重启实例的 mysql> show variables like '%secure%';+ + +| Variable_name | Value |+ + +| require_secure_transport | OFF || secu ...
分类:数据库   时间:2021-05-24 17:05:50    阅读次数:0
41857条   上一页 1 ... 10 11 12 13 14 ... 4186 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!