摘要:
#####程序代码 package main //总结:值接收者使用值的副本来调用方法,而指针接收者使用实际值来调用方法! import ( "fmt" ) //声明一个用户结构体 type user struct{ name string email string } //声明值类型接受者方法 f 阅读全文
摘要:
$query = "insert into inspectionunit(inspectionunitid,inspectionunitname) select '$inspectionunitid','$unitname' from (select 1) tmp where not exists 阅读全文