摘要:
MySQL日期格式化(format)取值范围。 阅读全文
摘要:
1、在SQL SERVER服务器上安装MYSQL ODBC驱动; 驱动下载地址:http://dev.mysql.com/downloads/connector/odbc/ 2、安装好后,在管理工具-ODBC数据源-系统DSN-添加-选择 MYSQL ODBC 5.3 Unicode DRIVER- 阅读全文
摘要:
数据绑定之DataFormatString设定BoundField的DataFormatString,通常有以下几种DataFormatString= "{0:C}" 货币,货币的格式取决于当前Thread中Culture的设置DataFormatString= "{0:E}" 科学计数法DataF... 阅读全文
摘要:
1 declare @str nvarchar(50);2 set @str='aa,32,22,55,7';3 select charindex(',',@str,1) as '第一个逗号的索引值'4 select replace(replace(LEFT(@str,charindex(',',@... 阅读全文
摘要:
truncate table 表名 阅读全文
摘要:
select * from tb_province --省pIDpName1北京市2天津市3上海市4重庆市5河北省6山西省.......select * from tb_city --城市cIDcNamepId19阿坝藏族羌族自治州228阿克苏市314阿拉尔市3112阿拉善盟3222阿勒泰市316阿... 阅读全文
摘要:
--省表 create table tb_province ( pID int NOT NULL PRIMARY KEY, pName varchar(32) ) --省 insert into tb_province values(1,'北京市') inser... 阅读全文
摘要:
select ID, Name = ( stuff ( ( select ',' + Name from Table_1 where ID = a.ID for xml path('') ),1,1,'' )) from Table_1 a group by ID原始数据:I... 阅读全文