摘要:
删除重复记录 DELETE n1 FROM user n1, user n2 WHERE n1.id > n2.id AND n1.tel = n2.tel DELETE FROM user WHERE id NOT IN (SELECT * FROM (SELECT MIN(n.id) FROM user n GROUP BY n.tel ) x) 阅读全文
摘要:
eclipse plugin url : http://goclipse.github.io/releases/ 1. recive post json data func UserCreate(w http.ResponseWriter, r *http.Request) { result, er 阅读全文