摘要: //查询所有表明select name from sysobjects where xtype='u'select * from sys.tables//查询数据库中所有的表名及行数SELECT a.name, b.rowsFROM sysobjects AS a INNER JOIN sysindexes AS b ON a.id = b.idWHERE (a.type = 'u') AND (b.indid IN (0, 1))ORDER BY a.name,b.rows DESC//查询所有的标明及空间占用量\行数selectobject_name(id) 阅读全文
posted @ 2013-02-26 16:04 ``炯`` 阅读(24866) 评论(1) 推荐(0) 编辑
摘要: C#版本View Code using System;using System.Collections.Generic;using System.Text;namespace NumberConventer{ class Class1 { private string[] CnNum = { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九" }; p 阅读全文
posted @ 2013-02-26 09:54 ``炯`` 阅读(606) 评论(0) 推荐(0) 编辑