码迷,mamicode.com
首页 >  
搜索关键字:warnings    ( 1040个结果
错误代码: 1582 Incorrect parameter count in the call to native function 'str_to_date'
1. 错误描述1 queries executed, 0 success, 1 errors, 0 warnings查询:SELECT t.`name`, DATE_FORMAT(str_to_date('2015'), '%Y') as statisDate, ROUND(IFNULL(SUM(t.`amount`), 0), 3) AS ...错误代码: 1582 Incorrect param...
分类:其他好文   时间:2015-07-06 23:27:32    阅读次数:157
错误代码: 1045 Access denied for user 'skyusers'@'%' (using password: YES)
1. 错误描述GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY ".";1 queries executed, 0 success, 1 errors, 0 warnings查询:grant all privileges on *.* to root@"%" identified by "."错误代码: 1045 Access denied...
分类:数据库   时间:2015-07-05 12:31:38    阅读次数:205
错误代码: 1449 The user specified as a definer ('root'@'%') does not exist
错误描述 1 queries executed, 0 success, 1 errors, 0 warnings 查询:call analyse_use(‘20150501’,’20150601’)错误代码: 1449 The user specified as a definer (‘root’@’%’) does not exist执行耗时 : 0 sec 传送时间 : 0 sec...
分类:其他好文   时间:2015-07-03 16:00:39    阅读次数:131
#309 (div.2) B. Ohana Cleans Up
1.题目描述:点击打开链接 2.解题思路:本题是一道简单的找最大值问题。只需要找出完全相同的行中个数那一行即可,输出它的个数。由于给定的范围比较小,可以直接用O(N^3)的算法解决。查找的时候用一个mark数组来标记哪些行已经查找过了,这样可以避免重复查找。 3.代码: #define _CRT_SECURE_NO_WARNINGS #include #include #include #i...
分类:其他好文   时间:2015-07-02 14:07:46    阅读次数:107
#308 (div.2) D. Vanya and Triangles
1.题目描述:点击打开链接 2.解题思路:本题是一道简单的计算几何题,统计一个图中有多少个三角形,由于给的时间很宽,完全可以用O(N^3)的算法来解决,判断是否构成三角形只需要用向量来判断三点是否共线即可。 3.代码: #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #...
分类:其他好文   时间:2015-06-29 17:51:54    阅读次数:92
#308 (div.2) A. Vanya and Table
1.题目描述:点击打开链接 2.解题思路:本题是一道简单的模拟题,每次扫描一个输入的长方形,然后将内部所有点都+1,最终统计数组所有元素的和即可。 3.代码: #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #inc...
分类:其他好文   时间:2015-06-29 14:59:00    阅读次数:123
mysql 执行计划的理解
1、执行计划就是在sql语句之前加上explain,使用desc 也可以。2、desc有两个选项extended和partitions,desc extended 将原sql语句进行优化,通过show warnings 可以看到优化后的sql语句。 desc partitions 可以查看使用分.....
分类:数据库   时间:2015-06-28 16:48:21    阅读次数:151
实验三
#include#include#include //#include //c里面没有string,因为string是一个类,而c没有类#include #define _CRT_SECURE_NO_WARNINGS//using namespace std;struct PCB{ in...
分类:其他好文   时间:2015-06-25 17:10:41    阅读次数:107
错误代码: 1111 Invalid use of group function
1、错误描述 1 queries executed, 0 success, 1 errors, 0 warnings 查询:update t_user_info t inner join t_pro_info t0 on t.`pro` = t0.`id` inner join t_stu_info t1 on t1.`id` = t0.`co... 错误代码: 1111 Invalid u...
分类:其他好文   时间:2015-06-19 20:20:01    阅读次数:543
错误代码: 1381 You are not using binary logging
1、错误描述 1 queries executed, 0 success, 1 errors, 0 warnings 查询:show master logs 错误代码: 1381 You are not using binary logging 执行耗时 : 0 sec 传送时间 : 0 sec 总耗时 : 0.002 sec 2、错误原因 #显示二进制日志数目 SH...
分类:其他好文   时间:2015-06-19 20:18:32    阅读次数:121
1040条   上一页 1 ... 81 82 83 84 85 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!