VALUE与VALUES都是正确的,经过验证,这两个也是可以混合着用的,只是两者对不同语句插入数量的执行效率各不相同。 可以看出在插入单行时,使用VALUES比较快 插入多行时,用VALUE比较快 https://blog.csdn.net/qq_26683009/article/details/52526834
{ ops: [ { insert: ‘Gandalf’, attributes: { bold: true } }, { insert: ‘ the ‘ }, { insert: ‘Grey’, attributes: { color: ‘#cccccc’ } } ] }
ioutil.WriteFile(lfile, body, os.ModeAppend)如果文件存在会清空文件然后写入,即使选ModeAppend也会清空。 追加的替代方案如下:os.OpenFile https://blog.csdn.net/weixin_30516243/article/details/95301901