标签:执行时间 区别 csharp insert ble 测试 div inf ima
1.value和values差别
两者并没有语法上的区别,区别仅仅在于执行时间。
经过测试可以发现:values插入单行较快,value插入多行较快。
2.insert语句没有value(values)用法:
加value是固定值插入;不加是动态插入,通常和select连着使用。
insert into imagetable_upload(ImageID) select ImageID FROM imagetable im, ( select SeriesID from Seriestable s, (select CustomerID from CustomerInfo where CustomerName = ‘林美玲‘) c where s.customerID = c.customerID ) ss where im.seriesID = ss.seriesID
标签:执行时间 区别 csharp insert ble 测试 div inf ima
原文地址:https://www.cnblogs.com/gaara-zhang/p/9233301.html