随笔分类 - MySql
摘要:https://www.cnblogs.com/tangqiu/p/12310933.html
阅读全文
摘要:提示没有 Microsoft Visual C++ Runtime 2013 到 https://www.microsoft.com/en-us/download/details.aspx?id=48145 下载
阅读全文
摘要:停止 Mysql 服务 找到 文件 C:\ProgramData\MySQL\MySQL Server 5.7\my.ini 注意文件夹 ProgramData 一般是隐藏的 找到[mysqld]在下面增加一行 lower_case_table_names=2 (注: 网上很多写的是 = 0, 这个
阅读全文
摘要:https://blog.csdn.net/mzhifa/article/details/80999912
阅读全文
摘要:https://blog.csdn.net/qq_32434307/article/details/86292943
阅读全文
摘要:Entity层 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel.DataAnnotations; 4 using System.Runtime.Serialization; 5 usi
阅读全文
摘要:https://www.cnblogs.com/jentary/p/6655471.html 修改数据库字符集: ALTER DATABASE database_name CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; 修改表的字符集: A
阅读全文
摘要:select * FROM information_schema.tables 该语句在Mysql 5.3 执行没问题。但在4.1 中不能执行
阅读全文
摘要:http://tieba.baidu.com/f?kz=176352241
阅读全文
摘要:http://forums.mysql.com/read.php?47,88108,88108
阅读全文
摘要:http://faq.csdn.net/read/217463.html
阅读全文
摘要:select last_insert_id();
阅读全文
摘要:Describe table; 或者 show full fields from table; 一般遇到中文会出现乱码。用 set names gb2312; show full fields from mvb2k400_account; 查询就可以了。
阅读全文