mysql 常用查询
程序员文章站
2022-06-12 19:58:18
...
一.group_concat函数,以指定的分割符合并列,与group by 一起用 例:SelectGROUP_CONCAT(c.columnName SEPARATOR ',') GROUP BY 二.PreparedStatement.RETURN_GENERATED_KEYS 得到刚刚插入记录的id PreparedStatementps .setXXX …… …… ps.executeUpdate(
一.group_concat函数,以指定的分割符合并列值,与group by 一起用
例:Select>GROUP_CONCAT(c.columnName SEPARATOR ',') >GROUP BY>
二.PreparedStatement.RETURN_GENERATED_KEYS 得到刚刚插入记录的id
PreparedStatement>ps.setXXX
……
……
ps.executeUpdate();
ResultSet>
rs.next();
int>
三.分页查询,得到查询的总条数
select SQL_CALC_FOUND_ROWS *>
ps => rs.next();
int>
四、常见sql命令
DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `uid` int(11) NOT NULL auto_incrementprimary key, `gid` int(11) default NULL, `username` varchar(15) NOT NULL, `password` varchar(15) NOT NULL,
foreign key (parent_id) reference parent(id) ON DELETE cascade on>