说明:当前测试为thinkphp5环境下的代码、不考虑用户uid问题,只考虑库存问题 准备: 1. 新建两个表(goods、orders) CREATE TABLE `goods` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT ...
分类:
其他好文 时间:
2021-02-23 14:30:21
阅读次数:
0
Oracle OCP 19c 认证1Z0-082考试题库(第6题)-CUUG整理 You have been tasked to create a table for a banking application. One of the columns must meet three requirem ...
分类:
数据库 时间:
2021-02-23 14:20:15
阅读次数:
0
在hive客户端建一张表比如bb 条件bb与abc表结构相同,abc有数据,把abc的数据导到bb里 hive -e是为了解决每次进入客户端的麻烦操作,使用了hive -e命令,可以在hive客户端外对客户端进行操作, 例如 hive -e "use aaa;select * from abc li ...
分类:
其他好文 时间:
2021-02-22 12:21:51
阅读次数:
0
SSM整合 1、数据库用表: CREATE DATABASE ssmbuild;USE ssmbuild;CREATE TABLE `books`(`bookID` INT NOT NULL AUTO_INCREMENT COMMENT '书id',`bookName` VARCHAR(100) N ...
分类:
其他好文 时间:
2021-02-22 12:00:55
阅读次数:
0
::v-deep .el-table tbody tr:hover > td { background-color: transparent;//去掉hover高亮 } ::v-deep .el-table::before { height: 0;//去掉表格下边框 } ::v-deep .el-t ...
分类:
其他好文 时间:
2021-02-20 12:43:02
阅读次数:
0
vue中引用第三方js总结 By:授客 QQ:1033553122 实践环境 win10 Vue 2.9.6 本文以引用jsmind为例,讲解怎么在vue中引用第三方js类库 基础示例 1、把下载好的js类库放在src/static目录下 2、在src/index.html入口文件中通过script ...
分类:
Web程序 时间:
2021-02-20 12:39:02
阅读次数:
0
本文主要记录关于多表查询的相关知识: 所用到的数据库代码如下: -- 部门表 CREATE TABLE dept ( id INT PRIMARY KEY PRIMARY KEY, -- 部门id dname VARCHAR(50), -- 部门名称 loc VARCHAR(50) -- 部门所在地 ...
分类:
数据库 时间:
2021-02-20 12:08:51
阅读次数:
0
一 RibbonAutoConfiguration @Configuration @Conditional(RibbonAutoConfiguration.RibbonClassesConditions.class) @RibbonClients @AutoConfigureAfter( name ...
分类:
编程语言 时间:
2021-02-20 12:02:23
阅读次数:
0
1、修改字段名: alter table 表名 rename column A to B 2、修改字段类型: alter table 表名 alter column 字段名 type not null 3、修改字段默认值 alter table 表名 add default (0) for 字段名 ...
分类:
数据库 时间:
2021-02-20 11:58:41
阅读次数:
0
A. Shifting Stacks time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You have n stacks of b ...
分类:
其他好文 时间:
2021-02-20 11:52:20
阅读次数:
0