sql server 判断是否存在数据库,表,列,视图 1 判断数据库是否存在if exists (select * from sys.databases where name = '数据库名') drop database [数据库名] 2 判断表是否存在if exists (select * f ...
分类:
数据库 时间:
2017-10-09 21:03:24
阅读次数:
223
题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=2442 题意: 有n个数a[i]从左到右排成一排。 你可以任意选数,但是连续的数不能超过k个。 问你最大的选数之和。 题解: 表示状态: dp[i]表示考虑了第i个数的最大之和。 找出答案: ...
分类:
其他好文 时间:
2017-10-09 19:44:51
阅读次数:
168
mysql用户权限操作1.创建用户mysql -urootcreate database zabbix default charset utf8;grant all on zabbix.* to zabbix@localhost identified by 'zabbix';#查看权限show gr ...
分类:
数据库 时间:
2017-10-09 19:39:35
阅读次数:
213
SNMP is a protocol that enables server remote-info-exchange. Which according to wikipedia: it [collecting and organizing information about managed dev ...
分类:
Web程序 时间:
2017-10-09 19:33:20
阅读次数:
177
1.前言 2.通过SSMS添加数据 3.通过SQL语句添加数据 3.1 添加单条数据 3.2 添加多条数据 4.通过其他表导入数据 4.1 通过数据库中的其他表导入数据 4.2 通过excel表导入数据 1.前言 增删改查都是对数据的操作,其中“增”对应的SQL语句便是“insert”,也就是“插入 ...
分类:
数据库 时间:
2017-10-09 18:30:35
阅读次数:
233
资源优化问题:Xilinx ise 出现资源不够的问题(ERROR:Cpld:868 - Cannot fit the design into any of the specified devices with the selected implementation options.),要在fitt ...
分类:
其他好文 时间:
2017-10-09 17:45:09
阅读次数:
142
1、安装配置 cd d:\mysql\bin mysqld --initialize--insecure # 初始化服务器 mysqld # 启动服务器 mysqld --install # 注册服务 mysqld --remove # 删除服务 net start mysql # 启动服务 net ...
分类:
数据库 时间:
2017-10-09 16:53:14
阅读次数:
197
这个命令中最关键的就是state列,mysql列出的状态主要有以下几种: Checking table 正在检查数据表(这是自动的)。Closing tables 正在将表中修改的数据刷新到磁盘中,同时正在关闭已经用完的表。这是一个很快的操作,如果不是这样的话,就应该确认磁盘空间是否已经满了或者磁盘 ...
分类:
其他好文 时间:
2017-10-09 14:16:19
阅读次数:
160
IFE 历史精选课程,斌斌带你一起从0开始学习JavaScript ...
分类:
Web程序 时间:
2017-10-09 13:19:01
阅读次数:
240