01 2021 档案
[转][postgresql]转换表名为小写
摘要:转自:https://www.cnblogs.com/heibai-ma/p/13675068.html -- 创建exec(sqlstring)函数方便执行 CREATE OR REPLACE FUNCTION "public"."exec"("sqlstring" varchar) RETURN 阅读全文
posted @ 2021-01-30 09:21 z5337 阅读(281) 评论(0) 推荐(0)
[转]SQL Server与Oracle 建表区别
摘要:在 SQL Server 中建表时的自增列: Create table tmp1 ( id int identity(1,1) primary key, .... ) 而在 Oracle 中想要自增列,需要建触发器,如下所示: Create table tmp1 ( id int primary k 阅读全文
posted @ 2021-01-19 14:06 z5337 阅读(118) 评论(0) 推荐(0)
[转][C#]cshtml 文本框事件
摘要:一段很有用的代码: $('#workDay').bind('input propertychange', function () { hui.toast('日期变化:' + $('#workDay').val()); }) 阅读全文
posted @ 2021-01-07 18:50 z5337 阅读(359) 评论(0) 推荐(0)