09 2020 档案
mysql 获取列名sql语句
摘要:select GROUP_CONCAT(CONCAT('i.',COLUMN_NAME,''))from(select COLUMN_NAME from information_schema.COLUMNS where table_name = 'inventorycheck' and table_ 阅读全文
posted @ 2020-09-27 16:18 不知勿言 阅读(911) 评论(0) 推荐(0)
Ubuntu 安装.net core 设置源仓储地址
摘要:https://blog.csdn.net/F8qG7f9YD02Pe/article/details/86582263 阅读全文
posted @ 2020-09-23 10:28 不知勿言 阅读(126) 评论(0) 推荐(0)
ASP.NET Core开发-MVC 使用dotnet 命令创建Controller和View
摘要:ASP.NET Core开发-MVC 使用dotnet 命令创建Controller和View https://www.cnblogs.com/linezero/p/5688772.html 阅读全文
posted @ 2020-09-22 09:01 不知勿言 阅读(124) 评论(0) 推荐(0)
ubuntu安装postman
摘要:https://jingyan.baidu.com/article/e3c78d649735d63c4c85f5e5.html ubuntu安装postman(安装其他应用程序类似) 阅读全文
posted @ 2020-09-13 14:30 不知勿言 阅读(691) 评论(0) 推荐(0)
redis相关操作
摘要:连接到redis: redis-cli -h 127.0.0.1 -p 6379 //选择数据库 select 0 //清空该数据库 flushdb //清空所有数据 flushall 阅读全文
posted @ 2020-09-10 13:51 不知勿言 阅读(116) 评论(0) 推荐(0)
C# StringValues 类型
摘要:命令空间:Microsoft.Extensions.Primitives 程序集:Microsoft.Extensions.Primitives.dll public readonly struct StringValues : IList<string>, ICollection<string>, 阅读全文
posted @ 2020-09-09 16:54 不知勿言 阅读(2700) 评论(0) 推荐(1)
MySQL时间戳与日期格式的相互转换
摘要:MySQL时间戳与日期格式的相互转换 MySQL: 获取当前时间 SELECT NOW(); // 2018/10/11 14:22:51 时间日期格式转换成时间戳格式,UNIX_TIMESTAMP() SELECT UNIX_TIMESTAMP(NOW()); // 1539238930 时间戳格 阅读全文
posted @ 2020-09-08 14:01 不知勿言 阅读(132) 评论(0) 推荐(0)
C# 生成时间戳以及时间戳转换为时间
摘要:/// <summary> /// 生成10位时间戳 /// </summary> /// <param name="value">时间</param> /// <returns></returns> public static long GetTimestamp10bit(this DateTim 阅读全文
posted @ 2020-09-08 10:24 不知勿言 阅读(4892) 评论(0) 推荐(0)