时序数据库Tdengine 批量插入避免因为主键ts时间重复导致数据被覆盖掉

 

目录

        在Mybatis中使用 

       在数据库管理工具中使用  now+100a


 使用now() + #{index}a     其中那这个 #{index}是标签里的循环出来的index

在Mybatis中使用 


    insert into uri
    (
        id,
        name,
        uri,
        code,
        property_id,
        ts
    )
    values
    
        (
            #{uri.id},
            #{uri.name},
            #{uri.uri},
            #{uri.code},
            #{uri.propertyId},
            now() + #{index}a
        )
    

 

在数据库管理工具中使用  now+100a

INSERT INTO uri (

                  ts,

                  id,

                  name,

                  uri,

                  code,

                  property_id)

VALUES (

               now+100a,

               'erweersdfsds',

               'P2',

               'A2',

              'P2',

              'gtyja678-gty7-yui9-889o-11123ef9iuo0');

 

你可能感兴趣的:(Tdengine,时序数据库,时序数据库,tdengine)