摘要:
转自:http://www.studyofnet.com/news/555.html 本文导读:删除表中的数据的方法有delete,truncate, 其中TRUNCATE TABLE用于删除表中的所有行,而不记录单个行删除操作。TRUNCATE TABLE 与没有 WHERE 子句的 DELETE 阅读全文
摘要:
转载自(更多详细请查看): https://www.cnblogs.com/lanleiming/p/7096973.html function isJSON(str) { if (typeof str == 'string') { try { var obj=JSON.parse(str); if 阅读全文