摘要:
SELECT d.NAME 表名, a.NAME 字段名, b.NAME 字段类型, g.VALUE 字段说明 FROM syscolumns a LEFT JOIN systypes b ON a.xtype = b.xusertype INNER JOIN sysobjects d ON a.i 阅读全文
摘要:
操作符详解 一、基础操作符 、1. 自增自检 操作符 ++、-- int x = 100; int y = x++; Console.WriteLine(x);//101 Console.WriteLine(y);//100 注解: x++; 是先用后加,先赋值后加减 详解步骤: int y = x 阅读全文