题目:查询小尹老师底下所有的学生create database test;use test;create table stu( id bigint, classID bigint, name varchar(10) );create table class( id bigint, teacherID ...
分类:
其他好文 时间:
2020-06-10 17:28:17
阅读次数:
55
查看版本信息 mysql> select version(); + + | version() | + + | 8.0.18 | + + 1 row in set (0.00 sec) 查看当前数据库 mysql> select database(); + + | database() | + + ...
分类:
数据库 时间:
2020-06-10 13:11:20
阅读次数:
66
管理员运行cmd,执行启动mysql命令:net start MySQL版本号 登录数据库:mysql -u root -p 输入密码 创建数据库:drop database if exists 数据库名; create database 数据库名; 展示数据库:show databases; ...
分类:
数据库 时间:
2020-06-10 11:23:17
阅读次数:
66
A:Saving Tang Monk 总时间限制: 1000ms 内存限制: 65536kB描述 《Journey to the West》(also 《Monkey》) is one of the Four Great Classical Novels of Chinese literature. ...
分类:
其他好文 时间:
2020-06-09 23:56:43
阅读次数:
153
这就是 docker 官网 tutorial 的一个流程 my first docker app Create a file named Dockerfile with the following contents. FROM node:12-alpine WORKDIR /app COPY . . ...
分类:
其他好文 时间:
2020-06-09 23:41:11
阅读次数:
80
创建好项目。 然后安装Git 随意地方打开Git Bash并Clone Github项目 随后跟着我输入这些命令: $ git add . $ git commit -m "first commit" $ git push -u origin master 其中first commit是注释内容,随 ...
分类:
Web程序 时间:
2020-06-09 20:36:37
阅读次数:
66
package main import ( "fmt" "github.com/gin-gonic/gin" "github.com/jinzhu/gorm" _ "github.com/jinzhu/gorm/dialects/mysql" ) var db *gorm.DB var err er ...
分类:
其他好文 时间:
2020-06-09 18:39:22
阅读次数:
54
一、背景 栈和队列是数据结构中最常用到的两种结构,有非常广泛的运用,该篇文章将通过动画的手段,展示栈和队列相互实现的底层原理,让我们真正搞懂栈和队列的特性。 二、概念 2.1 栈 栈[Stack]:是一种限定仅在表尾进行插入和删除操作的线性表;即后进先出(LIFO-last in first out ...
分类:
其他好文 时间:
2020-06-09 18:34:08
阅读次数:
68
html: <div class="box"> <div class="first">85.719</div> <div class="second">214.281</div> </div> css: .box{ width: 300px; display: flex; } .first{ bac ...
分类:
其他好文 时间:
2020-06-09 14:50:39
阅读次数:
60