mysql 查詢 常用 mysql常用查詢

2021-10-19 20:43:42 字數 906 閱讀 3219

一.group_concat函式,以指定的分割符合並列,與group by 一起用 例:selectgroup_concat(c.columnname separator ',') group by 二.preparedstatement.return_generated_keys 得到剛剛插入記錄的id preparedstatementps .set*** …… …… ps.executeupdate(

一.group_concat函式,以指定的分割符合並列值,與group by 一起用

例:select>group_concat(c.columnname separator ',') >group by>

二.preparedstatement.return_generated_keys 得到剛剛插入記錄的id

preparedstatement>ps.set***

ps.executeupdate();

resultset>

rs.next();

int>

三.分頁查詢,得到查詢的總條數

select sql_calc_found_rows *>

ps => rs.next();

int>

四、常見sql命令

drop table ifexists`user`;

create table `user` (

`uid` int(11) not nullauto_incrementprimary key,`gid` int(11)defaultnull,

`username` varchar(15) not null,

`password` varchar(15) not null,

foreign key(parent_id)referenceparent(id)on deletecascadeon>

mysql常用的查詢 MySQL常用查詢

資料庫 1.查詢所有資料的大小 data length 資料大小 index length 索引大小 select concat round sum data length index length 1024 1024,2 mb as data from information schema.tab...

mysql常用的查詢 MySQL常用查詢

select from unixtime create time,y m as time,sum sales amount sales amount sum from sales group by time 執行結果如下 查詢每年的銷售額 select from unixtime create ti...

mysql 子查詢優先順序 MySQL子查詢常見格式

mysql常見的幾種子查詢形式 select from where col any all select from x select from where col in select from x 該 句法相當的明了,就是查詢語句的where子句是以子查詢語句的結果作為其範圍的,與上一種語法的any...