摘要:
1.使用流导入的方法 string html = "@006|销售代表|4010200@008|客户代表|4010200@011"; string[] list = html.ToLower().Split('|'); string result = ""; for (int i = 0; i < list.Length; i++) { if (list.Trim().Contains("@") || list.Trim().Contains("其他")) { } else { result 阅读全文
摘要:
语法:BEGIN TRAN[SACTION] [transaction_name | @tran_name_variable]例如BEGIN TRAN-- 做某些操作,例如Insert into …if @@error <> 0BEGINROLLBACK TRANENDelseBEGINCOMMIT TRANEND 阅读全文
摘要:
实例3: 设有两个表为Product,Order_,其表内容如下: Product 产品编号 产品名称 客户订数 001 钢笔 30 002 毛笔 50 003 铅笔 100 Order_ 产品编号 客户名 客户订金 001 南山区 $30 002 罗湖区 $50 003 宝安区 $4 请实现按编号为连接条件,将两个表连接成一个临时表,该表只含编号.产品名.客户名.订金.总金额, 总金额=订金*订数,临时表放在存储过程中 代码如下: Create proc temp_sale as select a.产品编号,a.产品名称,b.客户名,b.客户订金,a.客户订... 阅读全文