改错误
//错误
java.sql.SQLSyntaxErrorException:
FUNCTION qq.count does not exist. Check the
'Function Name Parsing and Resolution' section in the Reference Manual
//SQL语句
select max(user.id),user.username,max(user.account),max(user.pwd),max(user.headImg),max(user.email),max(user.isonline),count (information.id) from user left join information on user.username=information.hostname group by user.username
该错误是由于使用count函数时,添加了一个空格,导致的
SQL语句
- group by语句
GROUP BY 语句用于结合聚合函数,根据一个或多个列对结果集进行分组。 - left join关键字
LEFT JOIN 关键字从左表(table1)返回所有的行,即使右表(table2)中没有匹配。如果右表中没有匹配,则结果为 NULL。 - count() 函数
COUNT() 函数返回匹配指定条件的行数。
序列化
需要序列化的类要实现Serializable接口,每一个可序列化的类都有一个serialVersionUID,不自动生成时,系统默认为1L,序列化和反序列化需要判断,是不是serialVersionUID是否相等,相等才可进行
在idea中设置serialVersionUID生成
找到各个深色部分