摘要:
Select O.Name as TableName,C.Name as ColumnName,C.Colid,T.Name as Type,C.Length, case c.isnullable when 1 then 'Null'else 'No Null'end as IS_NULLABLE ... 阅读全文
摘要:
十进制转换成二进制function DecToBin(number) dim remainder remainder = number do while remainder > 0 DecToBin = CStr(remainder mod 2) & DecToBin remainder = rem... 阅读全文