测试语句记录.sql 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. 
  2. update dindan set time2='2014-06-28' where id='20140628-007' and isnull(time2,'')<>null
  3. update dindan set time2='2014-06-28' where id='20140628-007' and isnull(time2,0)<>''
  4. update dindan set time2='2014-06-28' where id='20140628-007' and isnull(time2,'')<>''
  5. update dindan set time2='2014-06-28' where id='20140628-007' and isnull(time2,'')=''
  6. update dindan set time2='2014-06-28', status='OK' where id='20140628-007' and time2 is null
  7. /*right*/
  8. update dindan set time2=case when isnull(time2,'')='' then '2014-07-28' else time2 end , name2='OK',time3='2015-01-01',time1='2014-05-30' where id='20140628-007'
  9. update dindan set [status]='OK',[waiter1]='员工001',[waiter2]='',[curno]='12',[time2]=case when isnull([time2],'')='' then '2014-07-29' else [time2] end where id='20140701-002'
  10. update dindan set [time2]=case when isnull([time2],'')='' then '2014-07-28' end ,[status]='OK',[waiter1]='员工001',[waiter2]='',[curno]='12' where id='20140701-002'
  11. update dindan set [status]='OK',[waiter1]='员工001',[waiter2]='',[curno]='12',[time2]=case when [status]<>'OK' then '2018-07-29' else [time2] end where id='20140701-002'
  12. select name1,name2,time1,time2,time3,status from dindan where id='20140701-002'
  13. ///////////////////////////////////////////////////////////////////////////////
  14. select name1,name2,time1,time2,time3,waiter1,status from dindan where id='20140601-001'
  15. select * from dindanjd where id='20140601-001'
  16. //////////////////////////////////////////////////////////////
  17. update dindan set [status]=case when [status]<>'OK' then '拍摄中' else [status] end where id = '20140701-002'
  18. update dindanjd set [status]='拍摄中' where id='20140731-001'
  19. update dindanjd set [status]='拍摄中' where id='20140731-001'
  20. select * from takeview where bookingdate>='201-06-01' and bookingdate<='2014-06-01'
  21. select * from dindan time4>='201-06-01' and time4<='2014-06-01'
  22. select * from dindan convert(datetime,'30-03-2011',105)
  23. /*从一个数据库的表复制内容到另一个数据库中*/
  24. insert into [db].[dbo].[dindan] select * from [db].[dbo].[dindan$]
  25. delete dindan
  26. /*查看某数据库日志*/
  27. select * From ::fn_dblog(default,default)
  28. /*查数据库日志*/
  29. DBCC log(db_db,2)
  30. --设置数据库为单用户:
  31. ALTER DATABASE [dbname] SET SINGLE_USER
  32. --设置数据库为多用户:
  33. ALTER DATABASE [dbname] SET MULTI_USER
  34. ALTER DATABASE [dbname] SET  MULTI_USER WITH ROLLBACK IMMEDIATE
  35. --DBCC CHECKCATALOG 示例
  36. ALTER DATABASE lyfzdb SET SINGLE_USER
  37. DBCC CHECKDB (lyfzdb, repair_allow_data_loss) with NO_INFOMSGS
  38. --DBCC CHECKCATALOG (lyfzdb, repair_allow_data_loss) with NO_INFOMSGS
  39. DBCC CHECKCATALOG ('lyfzdb')
  40. ALTER DATABASE lyfzdb SET MULTI_USER
  41. -- Check the current database.
  42. DBCC CHECKCATALOG;
  43. GO
  44. -- Check the AdventureWorks2012 database.
  45. DBCC CHECKCATALOG (lyfzdb);
  46. GO
  47. DBCC CHECKDB('lyfzdb',REPAIR_ALLOW_DATA_LOSS)
  48. -- 对损坏的表进行修复;
  49. ALTER DATABASE [lyfzdb] SET SINGLE_USER
  50. DBCC CHECKTABLE('dindanjd',REPAIR_REBUILD)
  51. DBCC CHECKTABLE('dindanjd',REPAIR_REBUILD)
  52. DBCC CHECKDB ('dindanjd',Repair_Fast)
  53. -- 如果上面的修复也失败了
  54. DBCC CHECKTABLE('dindanjd',repair_allow_data_loss)
  55. dbcc checkdb('lyfzdb')
  56. alter database [db] set EMERGENCY
  57. alter database [db] set online
  58. use lyfzdb
  59. DBCC CHECKTABLE('dindan')
  60. dbcc checkdb('DBAP',repair_allow_data_loss)
  61. DBCC CHECKCATALOG('lyfzdb')
  62. dbcc checkdb
  63. DBCC CHECKCATALOG
  64. GO
  65. -- Check the pubs database.
  66. DBCC CHECKCATALOG ('lyfzdb')
  67. GO
  68. DBCC CHECKTABLE('dindanjd',repair_rebuild) with tablock
  69. /*------------------------------------------------------------------------------------------------------------*/
  70. update sendreg set [msgcount] = case when [msgcount]>5 then 11 else [msgcount] end,[content]='sdfd111111111' where [autoid]='94787'
  71. update sendreg set [msgcount] = case when cast([msgcount] as decimal(10,4)) > 10 then str(10) else [msgcount] end,[content]='sdfd' where [autoid]='94787'
  72. update sendreg set [msgcount] = case when convert(decimal(10,4),[msgcount]) > 3 then str(13) else [msgcount] end,[content]='sdfd33333' where [autoid]='94787'
  73. update dindan set curno = '0'
  74. ////////////////////////////////////////////////////////////////////////////////
  75. /*-sql判断一个字段是否存在:-*/
  76. if not exists(select name from syscolumns where id=object_id('[tableName]') and name='[columnName]')
  77. alter table [tablename] add [columnName] [datatype]
  78. if not exists(select name from syscolumns where id=object_id('[dindan]') and name='[id]')
  79. alter table [dindan] add [id] [nvchar](50) NULL)
  80. --判断数据库[TestDB]是否存在
  81. if exists(select name from sysobjects where name='dindan1')
  82. print 'dindan存在'
  83. else
  84. print 'dindan不存在'
  85. --判断表[TestTb]是否存在
  86. if not exists(select name from syscolumns where id=object_id('dindan') and name='id')
  87. print '表字段不存在'
  88. else
  89. print '表字段存在'
  90. --判断[TestDB]数据中[TestTb]表中是否存在[Name]字段
  91. if exists(select * from syscolumns where id=object_id('lyfzdb.dbo.dindan') and name='id')
  92. print '字段存在'
  93. else
  94. print '字段不存在'
  95. insert into [db].[dbo].[dindansp] select * from [db].[dbo].[dindansp$]
  96. ------------------------------------------------------------------------------------
  97. select * from renyuan where bm = '摄影部'
  98. --郭翔龙
  99. --张浩谦
  100. --任永杰
  101. --张庆艺
  102. --赵大永
  103. --行程
  104. select count(*) ct from dindan where waiter1 = '赵大永' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-10'
  105. select * from dindan where waiter1 = '郭翔龙' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-30'
  106. select * from dindan where waiter1 = '张浩谦' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-30'
  107. select * from dindan where waiter1 = '任永杰' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-30'
  108. select * from dindan where waiter1 = '张庆艺' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-30'
  109. select * from dindan where waiter1 = '赵大永' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-30'
  110. select * from dindan where waiter1 = '行程' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-30'
  111. select * from dindan where waiter1 = '赵大永' and status = 'OK' and time2 >='2014-09-01' and time2<='2014-09-30'
  112. select * from dindan where waiter1 = '赵大永' and time2 >='2014-09-01' and time2<='2014-09-30'
  113. select * from dindanjd where waiter1 = '赵大永' and status = 'OK' and date >='2014-09-01' and date<='2014-09-30'
  114. select * from dindanjd where waiter1 = '任永杰' and status = 'OK' and date >='2014-09-01' and date<='2014-09-30'
  115. select * from dindanjd where waiter1 = '赵大永' and status = 'OK' and date >='2014-09-01' and date<='2014-09-30'
  116. select * from dindanjd where waiter1 = '赵大永' and status = 'OK' and date >='2014-09-01' and date<='2014-09-30'
  117. select * from dindanjd where waiter1 = '赵大永' and status = 'OK' and date >='2014-09-01' and date<='2014-09-30'
  118. delete dindansp
  119. //添加主键约束
  120. alter table [shangpin] add constraint PK__shangpin__440B1D61 primary key(spid)
  121. //删除主键约束
  122. alter table [shangpin] drop constraint PK__shangpin__440B1D61
  123. alter table [shangpin] drop primary key(spid)
  124. alter table [shangpin] drop column spid primary key
  125. alter table [shangpin] drop column spid constraint
  126. alter table [shangpin] drop spid constraint
  127. alter table [shangpin] drop constraint('spid')
  128. EXEC sp_helpconstraint N'shangpin'
  129. EXEC sp_pkeys @table_name='shangpin'
  130. SELECT TABLE_NAME,COLUMN_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin'
  131. SELECT * FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin'
  132. EXEC sp_pkeys @table_name='shangpin'
  133. select * from INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin'
  134. select constraint_name from INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin'
  135. if (select constraint_name from INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin') not null
  136. -------------------------------
  137. Declare @FlName varchar(800)
  138. set @FlName=''
  139. set @FlName =(select data_type from information_schema.columns where table_name='tb_ErpOrder' and column_name ='Ord_Number')
  140. if @FlName='nvarchar'
  141. begin
  142. alter table tb_ErpOrder alter column Ord_Number int
  143. end
  144. -------------------------------
  145. -- 删除主键;
  146. declare @key_name nvarchar(200)
  147. set @key_name = (select constraint_name from INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin')
  148. if @key_name <> ''begin
  149. PRINT'begin'
  150. set @key_name ='alter table [shangpin] drop constraint ' +(select constraint_name from INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin')
  151. exec(@key_name)
  152. end
  153. else
  154. PRINT'没有主键'
  155. alter table [shangpin] drop constraint select constraint_name from INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin'
  156. select constraint_name from INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='shangpin'
  157. ------------------------------------------------------------------------------
  158. exec sp_helpindex 'shangpin'
  159. exec sp_helpconstraint 'shangpin'
  160. ------------------------------------------------------------------------------------------
  161. --主键约束(Primary Key constraint):要求主键列的数据唯一,并且不允许为空。
  162. --唯一约束(Unique Constraint):要求该列唯一,允许为空,但只能出现一个空值。
  163. --检查约束(Check Constraint):某列取值范围限制、格式限制等,如有关年龄的约束。
  164. --默认约束(Default Constraint):某列的默认值,如我们的男性同学较多,性别默认为男。
  165. --外键约束(Foreign Key):用于在两表之间建立关系需要制定引用主表的哪一列。
  166. 语法如下
  167. alter table 表名
  168. add constraint 约束名 约束类型具体的约束说明
  169. --示例:
  170. --添加主键约束
  171. alter table stuInfo
  172. add constraint PK_stuNo primary key(stuNo)
  173. --添加唯一键约束
  174. alter table stuInfo
  175. add constraint UQ_stuID unique(stuID)
  176. --添加默认约束
  177. alter table stuInfo
  178. add constraint DF_stuAddress default('地址不详') for stuAddress
  179. --添加检查约束
  180. alter table stuInfo
  181. add constraint CK_stuAge check(stuAge between 15 and 40)
  182. --添加外键约束
  183. alter table stuInfo
  184. add constraint FK_stuNo foreign key(stuNo) references stuInfo(stuNo)
  185. --删除约束
  186. alter table 表名 drop constraint 约束名
  187. --------------------------------------
  188. SELECT owner,constraint_name,constraint_type,table_name,status,deferrable,validated FROM user_constraints ORDER BY 'shangpin'
  189. IF EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[shangpin]') AND name = N'DF_shangpin_spid')
  190. ALTER TABLE [dbo].[shangpin] DROP CONSTRAINT [DF_shangpin_spid]
  191. alter table [shangpin] add constraint PK_shangpin_ primary key(spid)
  192. SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[shangpin]') AND name = N'DF_shangpin_spid'
  193. IF EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[shangpin]') AND name = N'DF_shangpin_spid')
  194. ALTER TABLE [dbo].[shangpin] DROP CONSTRAINT [DF_shangpin_spid]
  195. ---------------------------------------------------
  196. 4)删除某字段的约束
  197. declare @name varchar(100)
  198. --DF为约束名称前缀
  199. select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('shangpin') and b.id=a.cdefault and a.name='spid' and b.name like 'DF%'
  200. --删除约束
  201. alter table [shangpin] drop constraint @name
  202. --为字段添加新默认值和约束
  203. ALTER TABLE 表名 ADD CONSTRAINT @name DEFAULT (0) FOR [字段名]对字段约束进行更改
  204. --删除约束
  205. ALTER TABLE tablename
  206. Drop CONSTRAINT 约束名
  207. --修改表中已经存在的列的属性(不包括约束,但可以为主键或递增或唯一)
  208. ALTER TABLE tablename
  209. alter column 列名 int not null
  210. --添加列的约束
  211. ALTER TABLE tablename
  212. ADD CONSTRAINT DF_tablename_列名 DEFAULT(0) FOR 列名
  213. --添加范围约束
  214. alter table tablename add check(性别 in ('M','F'))
  215. select b.name from syscolumns a,sysobjects b where a.id=object_id('shangpin') and b.id=a.cdefault and a.name='spid' and b.name like 'DF%'
  216. ------------------------
  217. declare @name varchar(100)
  218. --DF为约束名称前缀
  219. select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('shangpin') and b.id=a.cdefault and a.name='spid' and b.name like 'DF%'
  220. --删除约束
  221. if @name <> '' begin
  222. set @name = 'alter table [shangpin] drop constraint ' + (select b.name from syscolumns a,sysobjects b where a.id=object_id('shangpin') and b.id=a.cdefault and a.name='spid' and b.name like 'DF%')
  223. exec (@name)
  224. end
  225. insert into client(id,name1,name2)values('20140930-006',' ','韩昕诺')
  226. 韩昕诺
  227. select * from dindanview where name2='韩昕诺'
  228. select * from dindan where name2='韩昕诺'
  229. select * from dindansp where id='20140930-006'
  230. select * from client where id='20140930-006'
  231. update client set id = (select id from dindan)
  232. select id from client where EXISTS(select id from dindan)
  233. select id from dindan where EXISTS(select id from client)
  234. select id from dindan where id != (select id from client)
  235. select dindan.id,dindan.name1,dindan.name2,client.id from dindan FULL OUTER JOIN client on dindan.id = client.id
  236. select * from dindan
  237. select * from client
  238. select * from client where id = '20140930-002'
  239. select id,name1,name2 from dindan where id not in(select id from client)
  240. select count(id) from dindan where id not in(select id from client)
  241. //----------------------------------------------------------------------------
  242. -- 将dindan表id\name1\name2不存在client表里的内容循环插入到client表里。
  243. declare @Myid nvarchar(50)
  244. declare @Myname1 nvarchar(50)
  245. declare @Myname2 nvarchar(50)
  246. declare @MyCount int
  247. select @MyCount=count(id) from dindan where id not in(select id from client)
  248. while @MyCount > 0 begin
  249. select top 1 percent @Myid=id,@Myname1=name1,@Myname2=name2 from dindan where id not in(select id from client)
  250. insert into client(id,name1,name2)values(@Myid,@Myname1,@Myname2)
  251. select @MyCount=count(id) from dindan where id not in(select id from client)
  252. end
  253. //----------------------------------------------------------------------------
  254. alter table [dindan] add [ImageStatus] numeric(6,0) not null default(0)
  255. alter table [dindan] alter column [ImageStatus] numeric(6,0)
  256. alter table [dindan] drop column [ImageStatus]
  257. dbcc checkdb('db')
  258. dbcc checktable('dindansp')
  259. dbcc checktable('dindansp')
  260. dbcc dbreindex('dindan',' ')
  261. dbcc dbreindex('dindanbukuan2',' ')
  262. --DBCC checktable('dindansp', REPAIR_REBUILD) ALL_ERRORMSGS
  263. ALTER DATABASE [db] SET SINGLE_USER
  264. DBCC checktable('dindansp', REPAIR_REBUILD) with NO_INFOMSGS
  265. ALTER DATABASE [db] SET MULTI_USER
  266. ALTER DATABASE [db] SET SINGLE_USER
  267. DBCC checktable('dindansp', Repair_Fast) with NO_INFOMSGS
  268. ALTER DATABASE [db] SET MULTI_USER
  269. ALTER DATABASE [db] SET SINGLE_USER
  270. DBCC checktable('dindansp', repair_allow_data_loss) with NO_INFOMSGS
  271. ALTER DATABASE [db] SET MULTI_USER
  272. use master
  273. declare @databasename varchar(255)
  274. set @databasename='db'
  275. exec sp_dboption @databasename, N'single', N'true' --将目标数据库置为单用户状态
  276. dbcc checkdb(@databasename,REPAIR_ALLOW_DATA_LOSS)
  277. dbcc checkdb(@databasename,REPAIR_REBUILD)
  278. exec sp_dboption @databasename, N'single', N'false'--将目标数据库置为多用户状态
  279. use master
  280. declare @databasename varchar(255)
  281. set @databasename='db'
  282. --exec sp_dboption @databasename, N'single', N'true' --将目标数据库置为单用户状态
  283. ALTER DATABASE [db] SET SINGLE_USER
  284. dbcc checktable('dindansp',REPAIR_ALLOW_DATA_LOSS)
  285. dbcc checktable('dindansp',REPAIR_REBUILD)
  286. exec sp_dboption @databasename, N'single', N'false'--将目标数据库置为多用户状态
  287. 数据库被置疑后的解决方法
  288. A.我们使用默认方式建立一个供恢复使用的数据库(如test)。可以在SQL Server Enterprise Manager
  289. 里面建立。
  290. B.停掉数据库服务器。
  291. C.将刚才生成的数据库的日志文件test_log.ldf删除,用要恢复的数据库mdf文件覆盖刚才生成的数据
  292. 库数据文件test_data.mdf。
  293. D.启动数据库服务器。此时会看到数据库test的状态为"置疑"。这时候不能对此数据库进行任何*作。
  294. E.设置数据库允许直接*作系统表。此*作可以在SQL Server Enterprise Manager里面选择数据库服
  295. 务器,按右键,选择"属性",在"服务器设置"页面中将"允许对系统目录直接修改"一项选中。也可以
  296. 使用如下语句来实现。
  297. use master
  298. go
  299. sp_configure 'allow updates',1
  300. go
  301. reconfigure with override
  302. go
  303. F.设置test为紧急修复模式
  304. update sysdatabases set status=-32768 where dbid=DB_ID('db')
  305. 此时可以在SQL Server Enterprise Manager里面看到该数据库处于"只读\置疑\脱机\紧急模式"可以
  306. 看到数据库里面的表,但是仅仅有系统表
  307. G.下面执行真正的恢复*作,重建数据库日志文件
  308. dbcc rebuild_log('test','C:\Program Files\Microsoft SQL Server\MSSQL\Data\test_log.ldf')
  309. 执行过程中,如果遇到下列提示信息:
  310. 服务器: 消息 5030,级别 16,状态 1,行 1
  311. 未能排它地锁定数据库以执行该*作。
  312. DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
  313. 说明您的其他程序正在使用该数据库,如果刚才您在F步骤中使用SQL Server Enterprise Manager
  314. 打开了test库的系统表,那么退出SQL Server Enterprise Manager就可以了。
  315. 正确执行完成的提示应该类似于:
  316. 警告: 数据库 'test' 的日志已重建。已失去事务的一致性。应运行 DBCC CHECKDB 以验证物理一致
  317. 性。将必须重置数据库选项,并且可能需要删除多余的日志文件。
  318. DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
  319. 此时打开在SQL Server Enterprise Manager里面会看到数据库的状态为"只供DBO使用"。此时可以
  320. 访问数据库里面的用户表了。
  321. H.验证数据库一致性(可省略)
  322. dbcc checkdb('test')
  323. 一般执行结果如下:
  324. CHECKDB 发现了 0 个分配错误和 0 个一致性错误(在数据库 'test' 中)。
  325. DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
  326. I.设置数据库为正常状态
  327. sp_dboption 'test','dbo use only','false'
  328. 如果没有出错,那么恭喜,现在就可以正常的使用恢复后的数据库啦。
  329. J.最后一步,我们要将步骤E中设置的"允许对系统目录直接修改"一项恢复。因为平时直接*作系统表
  330. 是一件比较危险的事情。当然,我们可以在SQL Server Enterprise Manager里面恢复,也可以使用
  331. 如下语句完成
  332. sp_configure 'allow updates',0
  333. go
  334. reconfigure with override
  335. go
  336. --数据库(如test) 分离后再附加
  337. EXEC sp_detach_db 'test'
  338. EXEC sp_attach_db 'test','c:\Program Files\Microsoft SQL Server\MSSQL\Data\test.mdf','c:\Program Files\Microsoft SQL Server\MSSQL\Data\test_log.ldf'
  339. /*从一个数据库的表复制内容到另一个数据库中*/
  340. set IDENTITY_INSERT [dindansp] on
  341. set IDENTITY_INSERT [dindansp$] on
  342. insert into [db].[dbo].[dindansp] select * from [db].[dbo].[dindansp$]
  343. dbcc checktable('dindan')
  344. select count(*) as cot from client3 where (birthday like '%s-11-27%s' or birthday = '2014-08-21') and check1=01'
  345. -------------------------------------------------------------------------------------------------------------------------
  346. -------------------------------------------------------------------------------------------------------------------------
  347. -------------------------------------------------------------------------------------------------------------------------
  348. -------------------------------------------------------------------------------------------------------------------------
  349. -------------------------------------------------------------------------------------------------------------------------
  350. -----------------儿童版本:
  351. dindanclient:生日前n天 和 百天前n天
  352. ((birthday1 like '%%s%' or birthday1 = '%s') and check1='0') or ((birthday1 like '%%s%' or birthday1 = '%s') and check1='1')
  353. --client2:生日前n天 和 百天前n天
  354. ((birthday like '%%s%' or birthday = '%s') and check1='0') or ((birthday like '%%s%' or birthday = '%s') and check1='1')
  355. --client3:生日前n天 和 百天前n天
  356. ((birthday like '%%s%' or birthday = '%s') and check1='0') or ((birthday like '%%s%' or birthday = '%s') and check1='1')
  357. -----------------婚纱版本:
  358. dindanclient:
  359. 生日前n天
  360. (birthday1 like '%%s%' and check1='0') or (birthday1 like '%%s%' and check1='1')
  361. (birthday2 like '%%s%' and check2='0') or (birthday2 like '%%s%' and check2='1')
  362. 纪念日前n天
  363. (time3 like '%%s%' and check3='0') or (time3 like '%%s%' and check3='1')
  364. 结婚当天
  365. (time3 = '%s' and check3='0') or (time3 = '%s' and check3='1')
  366. --client2:生日前n天
  367. (birthday like '%%s%' and check1='0') or (birthday like '%%s%' and check1='1')
  368. --client3:生日前n天 和 百天前n天
  369. 生日前n天
  370. (birthday like '%%s%' and check1='0') or (birthday like '%%s%' and check1='1')
  371. (birthday2 like '%%s%' and check2='0') or (birthday2 like '%%s%' and check2='1')
  372. 纪念日前n天
  373. (time3 like '%%s%' and check3='0') or (time3 like '%%s%' and check3='1')
  374. 结婚当天
  375. (time3 = '%s' and check3='0') or (time3 = '%s' and check3='1')
  376. -----------------婚纱版本:
  377. dindanclient:
  378. 生日前n天+纪念日前n天+结婚当天
  379. (birthday1 like '%%s%' and check1='0') or (birthday1 like '%%s%' and check1='1') or (birthday2 like '%%s%' and check2='0') or (birthday2 like '%%s%' and check2='1') or (time3 like '%%s%' and check3='0') or (time3 like '%%s%' and check3='1') or (time3 = '%s' and check3='0') or (time3 = '%s' and check3='1')
  380. --client2:生日前n天
  381. (birthday like '%%s%' and check1='0') or (birthday like '%%s%' and check1='1')
  382. --client3:
  383. 生日前n天+纪念日前n天+结婚当天
  384. (birthday like '%%s%' and check1='0') or (birthday like '%%s%' and check1='1') or (birthday2 like '%%s%' and check2='0') or (birthday2 like '%%s%' and check2='1') or (time3 like '%%s%' and check3='0') or (time3 like '%%s%' and check3='1') or (time3 = '%s' and check3='0') or (time3 = '%s' and check3='1')
  385. //-------------------------------------------------------------------------------------------------
  386. // 当hospitalmsgcheck==1时;查询hospitalclient表里的宝宝生日和百天、满n天;
  387. 生日前n天公历
  388. birthdaytped ='0' and (birthday like '%%%s%%' and check1='0') or (birthday like '%%%s%%' and check1='1')
  389. 百天前n天生日
  390. birthdaytped ='0' and (birthday ='%s' and check1='0') or (birthday ='%s' and check1='1')
  391. 满n天
  392. birthdaytped ='0' and (birthday ='%s' and check1='0') or (birthday ='%s' and check1='1')
  393. 综合全部:birthdaytped ='0' and ((birthday like '%%%s%%' and check1='0') or (birthday like '%%%s%%' and check1='1')) or ((birthday ='%s' and check1='0') or (birthday ='%s' and check1='1')) or ((birthday ='%s' and check1='0') or (birthday ='%s' and check1='1'))
  394. 综合全部2:
  395. birthdaytped ='0' and ((birthday like '%%%s%%' or birthday ='%s') and check1='0') or ((birthday like '%%%s%%' or birthday ='%s') and check1='1')
  396. 生日+满n天:birthdaytped ='0' and ((birthday like '%%%s%%' and check1='0') or (birthday like '%%%s%%' and check1='1')) or ((birthday ='%s' and check1='0') or (birthday ='%s' and check1='1'))
  397. 百天+满n天:birthdaytped ='0' and ((birthday ='%s' and check1='0') or (birthday ='%s' and check1='1')) or ((birthday ='%s' and check1='0') or (birthday ='%s' and check1='1'))
  398. 只有满n天:(birthday ='%s' and check1='0') or (birthday ='%s' and check1='1')
  399. //--------------------------------------------------------------------------------------------------------------------
  400. // 当hospitalcheck2==1时;查询hospitalclient表里怀孕满n天.
  401. // 满足今天为怀孕满n天的日期条件:Today = Pregnant + n天;
  402. // Pregnant = Today - n;
  403. // 而数据库没有Pregnant这个直接记录,Pregnant = 来单日期 - 已怀天数;
  404. // Today - n = orderDate - HasPregnantDays;
  405. // 已怀孕天数无法提前获取,只有使用来单日期判断个大概(HasPregnantDays <= n)。
  406. // orderDate = Today - (n - HasPregnantDays) > Today - n
  407. // 所以只要判断出 orderDate > Today - n 成立的日期。
  408. // 只有公历订单日期;预产期不需要理会。
  409. //--------------------------------------------------------------------------------------------------------------------
  410. %s = Today - n
  411. birthdaytped ='1' and date1 > '%s'
  412. update dindan set status3='OK'