1,将id列放在第一列 alter table cqc_xa.cqc_xa_diff_case modify id int unsigned auto_increment first; 2,增加自增id alter table test.student add column indexxx int( ...
分类:
数据库 时间:
2021-03-03 12:17:55
阅读次数:
0
查看数据库 show databases; use 数据库名; show tables; //显示数据库的表名describe 表名; //显示某表的字段, 建表模板 ...
分类:
数据库 时间:
2021-03-03 12:05:33
阅读次数:
0
方法一v-show1.声明data 默认显示第一条 table:0, 2.<div class="inspectionTitle"> <div class="stitle fleft" :class="{nowTitle:table==0}" @click="table=0">建设进度</div> ...
分类:
其他好文 时间:
2021-03-03 11:56:06
阅读次数:
0
https://www.cnblogs.com/yeungchie/ code ; ; 创建一个 tree 作为主 tree mainTree = hiCreateTree('mainTree) ; 创建两个 tree item treeItem1 = hiCreateTreeItem('treeI ...
分类:
其他好文 时间:
2021-03-02 12:29:11
阅读次数:
0
支持三种方式初始化表格: 1.html格式数据(即静态数据); 2.JavaScript传递数据; 3.数据属性变量动态获取。 1.静态表格:data-toggle="table" <table data-toggle="table"> <thead> <tr> <th>Item ID</th> < ...
分类:
其他好文 时间:
2021-03-02 12:21:56
阅读次数:
0
Bootstrap-Table是一个Boostrap的表格插件,能够将JSON数据直接显示在表格中。当然,这需要配置一些参数并进行初始化表格才行。其官方网站地址为:http://bootstrap-table.wenzhixin.net.cn/。里面可以下载使用所需的JS和CSS文件,以及参考文档和 ...
分类:
其他好文 时间:
2021-03-02 12:18:53
阅读次数:
0
查看数据表的信息,只能算是优化用户体验 --用户表 if exists(select * from sysobjects where name = 'bi_user') drop table bi_user create table bi_user ( user_id int not null pr ...
分类:
其他好文 时间:
2021-03-01 13:44:56
阅读次数:
0
root@M6708-T:/var/log# cat /proc/meminfoMemTotal: 1022988 kBMemFree: 622100 kBMemAvailable: 675396 kBBuffers: 81128 kBCached: 118656 kBSwapCached: 0 k ...
分类:
其他好文 时间:
2021-03-01 13:27:19
阅读次数:
0
最左匹配原则 DROP TABLE IF EXISTS employees; CREATE TABLE employees( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT '姓 ...
分类:
数据库 时间:
2021-02-27 13:21:23
阅读次数:
0
页面展示的表格第一列自动编号,如图 代码如下: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>自动编号</title> 6 </head> 7 8 <script language="j ...
分类:
Web程序 时间:
2021-02-27 13:14:39
阅读次数:
0