摘要:
--查询表主键 EXEC sp_pkeys @table_name='Plat_CommAttrSelect' --删除表主键 Declare @Pk varChar(100); Select @Pk=Name from sysobjects where Parent_Obj=OBJECT_ID('Plat_CommAttrSelect') and xtype='PK'; if @Pk is ... 阅读全文
摘要:
var end_time = new Date(time).getTime();//月份是实际月份-1 var start_time= new Date(serverTime).getTime(); 以上代码在google浏览器,安卓手机微信是没任何问题的,但是在苹果手机或者苹果微信异常; 问题出在 阅读全文