SQL Server 通过日期获取星座的函数

不知各位项目中会不会保存个人信息的星座属性,我这是项目中遇到了,把代码贴出来供需要的人吧,

SQL Server 函数创建语句:

CREATE FUNCTION [dbo].[f_星座]
(	
	@birthdate datetime
)
returns nvarchar(6)
AS
begin
	declare @month int, @day int, @result nvarchar(6)
	
	set @month = DATEPART(MONTH, @birthdate)
	set @day = DATEPART(DAY, @birthdate)
	
	if ((@month = 1 and @day >= 20) or (@month = 2 and @day <= 18)) 
	begin
        set @result = '水瓶座';
    end 
    else if ((@month = 2 and @day >= 19) or (@month = 3 and @day <= 20)) 
    begin
        set @result =  '双鱼座';
    end 
    else if ((@month = 3 and @day >= 21) or (@month = 4 and @day <= 19)) 
    begin
        set @result =  '白羊座';
    end 
    else if ((@month = 4 and @day >= 20) or (@month = 5 and @day <= 20)) 
    begin
        set @result =  '金牛座';
    end 
    else if ((@month = 5 and @day >= 21) or (@month = 6 and @day <= 21)) 
    begin
        set @result = '双子座';
    end 
    else if ((@month = 6 and @day >= 22) or (@month = 7 and @day <= 22)) 
    begin
        set @result =  '巨蟹座';
    end 
    else if ((@month = 7 and @day >= 23) or (@month = 8 and @day <= 22)) 
    begin
        set @result =  '狮子座';
    end 
    else if ((@month = 8 and @day >= 23) or (@month = 9 and @day <= 22)) 
    begin
        set @result =  '处女座';
    end 
    else if ((@month = 9 and @day >= 23) or (@month = 10 and @day <= 23)) 
    begin
        set @result =  '天秤座';
    end 
    else if ((@month = 10 and @day >= 24) or (@month = 11 and @day <= 22)) 
    begin
        set @result =  '天蝎座';
    end 
    else if ((@month = 11 and @day >= 23) or (@month = 12 and @day <= 21)) 
    begin
        set @result =  '射手座';
    end 
    else if ((@month = 12 and @day >= 22) or (@month = 1 and @day <= 19)) 
    begin
        set @result =  '摩羯座';
    end
	
	return @result
end

JS 传入日期获取年龄、星座

这个不知道有没有项目会用。。反正我遇到了。。。写了一份留着吧。。

根据日期获取年龄(传入yyyy-mm-dd):

//根据日期获取年龄(传入yyyy-mm-dd)
function getAgeByBornDate(bornDate) {
    var myDate = new Date();
    var month = myDate.getMonth() + 1;
    var day = myDate.getDate();
    var age = myDate.getFullYear() - parseInt(bornDate.substring(0, 4)) - 1;
    if (parseInt(bornDate.substring(5, 7)) < month ||
        parseInt(bornDate.substring(5, 7)) == month && parseInt(bornDate.substring(8, 10)) <= day) {
        age++;
    }
    return age;
}

根据日期获取星座(传入yyyy-mm-dd):

//根据日期获取星座(传入yyyy-mm-dd)
function getConstellationByBornDate(bornDate) {
    var month = parseInt(bornDate.substring(5, 7));
    var day = parseInt(bornDate.substring(8, 10));

    if ((month == 1 && day >= 20) || (month == 2 && day <= 18)) {
        return "水瓶座";
    } else if ((month == 2 && day >= 19) || (month == 3 && day <= 20)) {
        return "双鱼座";
    } else if ((month == 3 && day >= 21) || (month == 4 && day <= 19)) {
        return "白羊座";
    } else if ((month == 4 && day >= 20) || (month == 5 && day <= 20)) {
        return "金牛座";
    } else if ((month == 5 && day >= 21) || (month == 6 && day <= 21)) {
        return "双子座";
    } else if ((month == 6 && day >= 22) || (month == 7 && day <= 22)) {
        return "巨蟹座";
    } else if ((month == 7 && day >= 23) || (month == 8 && day <= 22)) {
        return "狮子座";
    } else if ((month == 8 && day >= 23) || (month == 9 && day <= 22)) {
        return "处女座";
    } else if ((month == 9 && day >= 23) || (month == 10 && day <= 23)) {
        return "天秤座";
    } else if ((month == 10 && day >= 24) || (month == 11 && day <= 22)) {
        return "天蝎座";
    } else if ((month == 11 && day >= 23) || (month == 12 && day <= 21)) {
        return "射手座";
    } else if ((month == 12 && day >= 22) || (month == 1 && day <= 19)) {
        return "摩羯座";
    }
    return;
}

JS 身份证验证;获取生日、性别

身份证号码验证(理论15、18位都可用):

//身份证验证
function identityCodeValid(code) {
    if (code + "" == "") {
        return;
    }
    var city = { 11: "北京", 12: "天津", 13: "河北", 14: "山西", 15: "内蒙古", 21: "辽宁", 22: "吉林", 23: "黑龙江 ", 31: "上海", 32: "江苏", 33: "浙江", 34: "安徽", 35: "福建", 36: "江西", 37: "山东", 41: "河南", 42: "湖北 ", 43: "湖南", 44: "广东", 45: "广西", 46: "海南", 50: "重庆", 51: "四川", 52: "贵州", 53: "云南", 54: "西藏 ", 61: "陕西", 62: "甘肃", 63: "青海", 64: "宁夏", 65: "新疆", 71: "台湾", 81: "香港", 82: "澳门", 91: "国外 " };
    var tip = "";
    var pass = true;
    //验证身份证格式(6个地区编码,8位出生日期,3位顺序号,1位校验位)
    if (!code || !/^\d{6}(18|19|20)?\d{2}(0[1-9]|1[12])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$/i.test(code)) {
        tip = "身份证号格式错误";
        pass = false;
    }

    else if (!city[code.substr(0, 2)]) {
        tip = "身份证号地址编码错误";
        pass = false;
    }
    else {
        //18位身份证需要验证最后一位校验位
        if (code.length == 18) {
            code = code.split('');
            //∑(ai×Wi)(mod 11)
            //加权因子
            var factor = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2];
            //校验位
            var parity = [1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2];
            var sum = 0;
            var ai = 0;
            var wi = 0;
            for (var i = 0; i < 17; i++) {
                ai = code[i];
                wi = factor[i];
                sum += ai * wi;
            }
            var last = parity[sum % 11];
            if (parity[sum % 11] != code[17]) {
                tip = "身份证号校验位错误";
                pass = false;
            }
        }
    }
    if (!pass) alert(tip);
    return pass;
}

身份证获取生日(获取到的为yyyy-mm-dd格式的字符串):

//身份证获取生日(yyyy-mm-dd)
function getBirthdayFromIdCard(idCard) {
    var birthday = "";
    if (idCard != null && idCard != "") {
        if (idCard.length == 15) {
            birthday = "19" + idCard.substr(6, 6);
        } else if (idCard.length == 18) {
            birthday = idCard.substr(6, 8);
        }

        birthday = birthday.replace(/(.{4})(.{2})/, "$1-$2-");
    }

    return birthday;
}

身份证获取性别:

//身份证获取性别
function getSexByID(id) {
    var sex;
    if (id.length == 15) {
        if (parseInt(id.charAt(14) / 2) * 2 != id.charAt(14)) {
            sex = "男";
        }
        else {
            sex = "女";
        }
    }
    else if (id.length == 18) {
        if (parseInt(id.charAt(16) / 2) * 2 != id.charAt(16)) {
            sex = "男";
        }
        else {
            sex = "女";
        }
    }
    return sex;
};

在将 varchar 值 ‘10.00’ 转换成数据类型 int 时失败。

在我们项目中有没有遇到这么个要求?做一个导入Excel功能,里面有数量列,系统中是int类型,用户上传的Excel中不一定是什么类型,假如用户是传了文本类型的带小数数字,需要直接insert,则会报标题中的错误。但用户“理所应当”的说:“不是我的问题!”,这时候应该怎么办?

强转? cast(i.stock_count as int)、convert(int, i.stock_count) ? 可能并不起作用……

截取字符串?鬼知道用户会传什么类型的数字进来…………

要么就在真正导入前在代码中做细致判断,要么图省事使用“floor(i.stock_count)”。

floor函数(向下取整)是无论小数点后面是什么,都只保留当前整数。简单,方便~

.NET 事务处理 transactionscope “此操作对该事务的状态无效” 、”已中止事务” 错误

在.Net中使用TransactionScope 可以对括进去的代码进行事务处理,使用方法如下。

using (System.Transactions.TransactionScope scope = new System.Transactions.TransactionScope())
{
   //代码逻辑
}

如果在里面的代码出现异常(即便含有try..catch.异常捕获),则会在代码最后的“}”处触发“已中止事务”的异常,不调试的话前台返回的就是这个异常,如下图:

这时候需要断点调试里面的代码,看看是否有异常。

如果遇到“此操作对该事务的状态无效”错误,一般断点调试不会准确命中问题语句,我遇到的例子是在conn.Open()触发的异常,这打开数据库连接一般不可能会有错误,通过网上寻找也几乎没有问题的解答,后来自己研究,我总结了会有以下可能:

1、MSDTC服务开启中,但有问题,尝试重启(net start msdtc)

2、可能是处理时间过长导致超时,设置超时时长。new TransactionScope(TransactionScopeOption.Required, 600000)

3、平常没问题极少数遇到时,考虑是否有重复数据。一个事务中对同一条数据进行了多次处理,在第二次处理的时候会报错。或有多个一样的数据进行了处理。(如果是先select然后for循环的处理且平常不报错,一般是这种情况)