摘要:
//查询所有表明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) 阅读全文
摘要:
C#版本View Code using System;using System.Collections.Generic;using System.Text;namespace NumberConventer{ class Class1 { private string[] CnNum = { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九" }; p 阅读全文