ps_renew.inc
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. ################ include/ps_renew.inc #################
  2. #                                                     #
  3. #    renew the content of t1 and t9     #
  4. #                                                     #
  5. #######################################################
  6. # truncate could not be used, because it is not supported
  7. # in tables of type MERGE
  8. delete from t1 ;
  9. insert into t1 values (1,'one');
  10. insert into t1 values (2,'two');
  11. insert into t1 values (3,'three');
  12. insert into t1 values (4,'four');
  13. commit ;
  14. delete from t9 ;
  15. insert into t9
  16. set c1= 1, c2= 1, c3= 1, c4= 1, c5= 1, c6= 1, c7= 1, c8= 1, c9= 1,
  17.     c10= 1, c11= 1, c12 = 1,
  18.     c13= '2004-02-29', c14= '2004-02-29 11:11:11', c15= '2004-02-29 11:11:11',
  19.     c16= '11:11:11', c17= '2004',
  20.     c18= 1, c19=true, c20= 'a', c21= '123456789a', 
  21.     c22= '123456789a123456789b123456789c', c23= 'tinyblob', c24= 'tinytext',
  22.     c25= 'blob', c26= 'text', c27= 'mediumblob', c28= 'mediumtext',
  23.     c29= 'longblob', c30= 'longtext', c31='one', c32= 'monday';
  24. insert into t9
  25. set c1= 9, c2= 9, c3= 9, c4= 9, c5= 9, c6= 9, c7= 9, c8= 9, c9= 9,
  26.     c10= 9, c11= 9, c12 = 9,
  27.     c13= '2004-02-29', c14= '2004-02-29 11:11:11', c15= '2004-02-29 11:11:11',
  28.     c16= '11:11:11', c17= '2004',
  29.     c18= 1, c19=false, c20= 'a', c21= '123456789a', 
  30.     c22= '123456789a123456789b123456789c', c23= 'tinyblob', c24= 'tinytext',
  31.     c25= 'blob', c26= 'text', c27= 'mediumblob', c28= 'mediumtext',
  32.     c29= 'longblob', c30= 'longtext', c31='two', c32= 'tuesday';
  33. commit ;