/*查询一张表所有的数据*/ select * from mall_goods; /*查询某些列*/ select id,name,goodsno from mall_goods; /*为列取别名,为了能与JavaBean中的属性对应,区分多张表中同名的列*/ select id as goodsI ...
分类:
其他好文 时间:
2020-06-10 17:14:16
阅读次数:
45
字符函数 length 获取字节量 ## 查看英文的字节长度mysql> select length('haha'); + + | length('haha') | + + | 4 | + + 1 row in set (0.00 sec)## 查看中文的字节长度 mysql> select len ...
分类:
数据库 时间:
2020-06-10 13:14:44
阅读次数:
69
Summary 提交数据 可以使用 submitButton 的 formaction 属性,提交到不同的方法上。 enctype 属性规定在将表单数据发送到服务器之前如何对其进行编码(只有 method="post" 时才使用 enctype 属性)。 HTML Grails - GSP 保存 分... ...
分类:
Web程序 时间:
2020-06-10 09:32:44
阅读次数:
82
这就是 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
In this application, we will create a simple adder that computes the sum of two integers. During this process, we will: Generate a Maven project using ...
分类:
移动开发 时间:
2020-06-09 18:18:18
阅读次数:
59
转:https://blog.csdn.net/qq_32760017/article/details/83480284 首先Truffle是针对基于以太坊的Solidity语言的一套开发框架。在Mac OS执行truffle init报错: Starting unbox... ? Preparin ...
分类:
其他好文 时间:
2020-06-09 12:38:11
阅读次数:
193
模型压缩95%:Lite Transformer,MIT韩松等人 Lite Transformer with Long-Short Range Attention Zhanghao Wu, Zhijian Liu, Ji Lin, Yujun Lin, Song Han 论文地址:https://a ...
分类:
其他好文 时间:
2020-06-09 09:18:52
阅读次数:
63
You have an array of logs. Each log is a space delimited string of words. For each log, the first word in each log is an alphanumeric identifier. Then ...
分类:
其他好文 时间:
2020-06-08 12:55:59
阅读次数:
59
经常会有从4G切换到wifi网络或者是从wifi切换到4G网络的场景,由于网络的IP变了,导致需要重新建立连接,而QUIC使用一个ID来标志连接,即使切换网络也可以使用之前的建立连接的数据如交换的密钥,而不用再重新HTTPS握手,不过切换的过程可能会导致有些包丢了,需要利用FEC恢复或者重传。 ...
分类:
其他好文 时间:
2020-06-07 16:46:46
阅读次数:
98