我们首先看一下MySQL官方文档:[5.7](https://dev.mysql.com/doc/refman/5.7/en/create-database.html) CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name [create_option ...
分类:
数据库 时间:
2021-01-27 13:04:52
阅读次数:
0
import React from 'react'; import style from './index.module.scss'; const icon = `<svg t="1587390375993" class="icon" viewBox="0 0 1024 1024" version= ...
分类:
其他好文 时间:
2021-01-26 12:33:54
阅读次数:
0
查询库 show database; 切换库 use mysql; 查看库里的表 show tables; 查看表里的字段 desc tb_name; 查看建表语句 show create table tb_name/G; 查看当前用户 select user(); 查看当前使用的数据库 selec ...
分类:
数据库 时间:
2021-01-26 11:54:29
阅读次数:
0
删除数据库时提示:message:Database DBname is not empty. One or more tables exist. ##解决方案1: 先删除数据库中的所有表,再删除数据库 ##解决方案2: 强制删除 drop database db_hive cascade; ...
分类:
数据库 时间:
2021-01-26 11:44:00
阅读次数:
0
create—>show—>activate—>closequery—>close—>destroy。其中activate事件和deactivate事件触发时机是在:1、同一个应用程序的2、非模态窗体间3、当前窗体被激活(activate)/失去焦点(deactivate)切换的时候触发。当前窗体所 ...
环境:VS2019编写控制台程序、win10新建任务计划 一、新建一个控制台程序,书写创建.txt文本的程序 1 static void Main(string[] args) 2 { 3 string title = "定时记录日志"; 4 string content = "你好,朋友!"; 5 ...
分类:
其他好文 时间:
2021-01-25 11:10:38
阅读次数:
0
###1.如果没有vue脚手架需先要安装脚手架 cnpm i @vue/cli -g ###2.利用脚手架创建项目 vue create myproject(项目名) ###3.创建完项目后,需手动在项目根目录创建vue.config.js # vue.config.js module.export ...
分类:
其他好文 时间:
2021-01-25 10:57:04
阅读次数:
0
结论:偏置的方向为曲线方向与拉伸方向的向量叉乘。 在UF_MODL_create_extrusion帮助中有这么一句话:Note that the offset direction is determined by the cross product of the direction vector ...
分类:
其他好文 时间:
2021-01-25 10:41:13
阅读次数:
0
一、复制表中数据 INSERT INTO agent(`agent_id`, `agent_type_id`, `product_no`, `yaml`, `is_anysc`, `status`, `create_time`, `update_time`) SELECT (SELECT UUID( ...
分类:
数据库 时间:
2021-01-25 10:37:33
阅读次数:
0
一、新增节点 语法 #其中-s 为有序节点,-e 临时节点 create [-s] [-e] path data 创建持久化节点并写入数据: # 创建hadoop节点并写入数据123456: create /hadoop "123456" 创建持久化有序节点,此时创建的节点名为指定节点名 + 自增序 ...
分类:
系统相关 时间:
2021-01-22 12:13:51
阅读次数:
0