--按某一字段分组取最大(小)值所在行的数据
/*<br>数据如下:<br>name val memo<br>a 2 a2(a的第二个值)<br>a 1 a1--a的第一个值<br>a 3 a3:a的第三个值<br>b 1 b1--b的第一个值<br>b 3 b3:b的第三个值<br>b 2 b2b2b2b2<br>b 4 b4b4<br>b 5 b5b5b5b5b5<br>*/
--创建表并插入数据:
create table tb(name varchar(10),val int,memo varchar(20))<br>insert into tb values('a', 2, 'a2(a的第二个值)')<br>insert into tb values('a', 1, 'a1--a的第一个值')<br>insert into tb values('a', 3, 'a3:a的第三个值')<br>insert into tb values('b', 1, 'b1--b的第一个值')<br>insert into tb values('b', 3, 'b3:b的第三个值')<br>insert into tb values('b', 2, 'b2b2b2b2')<br>insert into tb values('b', 4, 'b4b4')<br>insert into tb values('b', 5, 'b5b5b5b5b5')<br>go
--一、按name分组取val最大的值所在行的数据。
--方法1:<br>select a.* from tb a where val = (select max(val) from tb where name = a.name) order by a.name<br>--方法2:<br>select a.* from tb a where not exists(select 1 from tb where name = a.name and val > a.val)<br>--方法3:<br>select a.* from tb a,(select name,max(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name<br>--方法4:<br>select a.* from tb a inner join (select name , max(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name<br>--方法5<br>select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name<br>/*<br>name val memo <br>---------- ----------- --------------------<br>a 3 a3:a的第三个值<br>b 5 b5b5b5b5b5<br>*/
--二、按name分组取val最小的值所在行的数据。
--方法1:<br>select a.* from tb a where val = (select min(val) from tb where name = a.name) order by a.name<br>--方法2:<br>select a.* from tb a where not exists(select 1 from tb where name = a.name and val --方法3:<br>select a.* from tb a,(select name,min(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name<br>--方法4:<br>select a.* from tb a inner join (select name , min(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name<br>--方法5<br>select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val /*<br>name val memo <br>---------- ----------- --------------------<br>a 1 a1--a的第一个值<br>b 1 b1--b的第一个值<br>*/
--三、按name分组取第一次出现的行所在的数据。
select a.* from tb a where val = (select top 1 val from tb where name = a.name) order by a.name<br>/*<br>name val memo <br>---------- ----------- --------------------<br>a 2 a2(a的第二个值)<br>b 1 b1--b的第一个值<br>*/
--四、按name分组随机取一条数据。
select a.* from tb a where val = (select top 1 val from tb where name = a.name order by newid()) order by a.name<br>/*<br>name val memo <br>---------- ----------- --------------------<br>a 1 a1--a的第一个值<br>b 5 b5b5b5b5b5<br>*/
--五、按name分组取最小的两个(N个)val
select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val) order by a.name,a.val<br>select a.* from tb a where exists (select count(*) from tb where name = a.name and val /*<br>name val memo <br>---------- ----------- --------------------<br>a 1 a1--a的第一个值<br>a 2 a2(a的第二个值)<br>b 1 b1--b的第一个值<br>b 2 b2b2b2b2<br>*/
--六、按name分组取最大的两个(N个)val
select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name,a.val<br>select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val desc) order by a.name,a.val<br>select a.* from tb a where exists (select count(*) from tb where name = a.name and val > a.val having Count(*) /*<br>name val memo <br>---------- ----------- --------------------<br>a 2 a2(a的第二个值)<br>a 3 a3:a的第三个值<br>b 4 b4b4<br>b 5 b5b5b5b5b5<br>*/
--七,假如整行数据有重复,所有的列都相同。
/*<br>数据如下:<br>name val memo<br>a 2 a2(a的第二个值)<br>a 1 a1--a的第一个值<br>a 1 a1--a的第一个值<br>a 3 a3:a的第三个值<br>a 3 a3:a的第三个值<br>b 1 b1--b的第一个值<br>b 3 b3:b的第三个值<br>b 2 b2b2b2b2<br>b 4 b4b4<br>b 5 b5b5b5b5b5<br>*/
--在sql server 2000中只能用一个临时表来解决,生成一个自增列,先对val取最大或最小,然后再通过自增列来取数据。
--创建表并插入数据:
create table tb(name varchar(10),val int,memo varchar(20))<br>insert into tb values('a', 2, 'a2(a的第二个值)')<br>insert into tb values('a', 1, 'a1--a的第一个值')<br>insert into tb values('a', 1, 'a1--a的第一个值')<br>insert into tb values('a', 3, 'a3:a的第三个值')<br>insert into tb values('a', 3, 'a3:a的第三个值')<br>insert into tb values('b', 1, 'b1--b的第一个值')<br>insert into tb values('b', 3, 'b3:b的第三个值')<br>insert into tb values('b', 2, 'b2b2b2b2')<br>insert into tb values('b', 4, 'b4b4')<br>insert into tb values('b', 5, 'b5b5b5b5b5')<br>go<br>select * , px = identity(int,1,1) into tmp from tb<br>select m.name,m.val,m.memo from<br>(<br>select t.* from tmp t where val = (select min(val) from tmp where name = t.name)<br>) m where px = (select min(px) from<br>(<br>select t.* from tmp t where val = (select min(val) from tmp where name = t.name)<br>) n where n.name = m.name)<br>drop table tb,tmp<br>/*<br>name val memo<br>---------- ----------- --------------------<br>a 1 a1--a的第一个值<br>b 1 b1--b的第一个值<br>(2 行受影响)<br>*/
--在sql server 2005中可以使用row_number函数,不需要使用临时表。
--创建表并插入数据:
create table tb(name varchar(10),val int,memo varchar(20))<br>insert into tb values('a', 2, 'a2(a的第二个值)')<br>insert into tb values('a', 1, 'a1--a的第一个值')<br>insert into tb values('a', 1, 'a1--a的第一个值')<br>insert into tb values('a', 3, 'a3:a的第三个值')<br>insert into tb values('a', 3, 'a3:a的第三个值')<br>insert into tb values('b', 1, 'b1--b的第一个值')<br>insert into tb values('b', 3, 'b3:b的第三个值')<br>insert into tb values('b', 2, 'b2b2b2b2')<br>insert into tb values('b', 4, 'b4b4')<br>insert into tb values('b', 5, 'b5b5b5b5b5')<br>go<br>select m.name,m.val,m.memo from<br>(<br>select * , px = row_number() over(order by name , val) from tb<br>) m where px = (select min(px) from<br>(<br>select * , px = row_number() over(order by name , val) from tb<br>) n where n.name = m.name)<br>drop table tb<br>/*<br>name val memo<br>---------- ----------- --------------------<br>a 1 a1--a的第一个值<br>b 1 b1--b的第一个值<br>(2 行受影响)<br>*/

mySqlStringTypesimpactStorageAndPerformanCeaseAsfollows:1)长度,始终使用theSamestoragespace,whatcanbefasterbutlessspace-felfficity.2)varCharisvariable varcharisvariable length,morespace-morespace-morespace-effficitybuteftife buteftife butfority butfority textifforlyslower.3)

mySqlStringTypesIncludeVarChar,文本,char,enum和set.1)varCharisVersAtileForvariable-lengthStringStringSuptOptoPeptoPepecifientlimit.2)textisidealforlargetStortStorStoverStorextorewiteWithoutAdefinedLengthl.3)charlisfixed-Length

MySQLoffersvariousstringdatatypes:1)CHARforfixed-lengthstrings,2)VARCHARforvariable-lengthtext,3)BINARYandVARBINARYforbinarydata,4)BLOBandTEXTforlargedata,and5)ENUMandSETforcontrolledinput.Eachtypehasspecificusesandperformancecharacteristics,sochoose

TograntpermissionstonewMySQLusers,followthesesteps:1)AccessMySQLasauserwithsufficientprivileges,2)CreateanewuserwiththeCREATEUSERcommand,3)UsetheGRANTcommandtospecifypermissionslikeSELECT,INSERT,UPDATE,orALLPRIVILEGESonspecificdatabasesortables,and4)

toadduserInmysqleffectection andsecrely,theTheSepsps:1)USEtheCreateuserStattoDaneWuser,指定thehostandastrongpassword.2)GrantNectalRevileSaryPrivilegesSustate,usiveleanttatement,AdheringTotheTeprinciplelastPrevilegege.3)

toaddanewuserwithcomplexpermissionsinmysql,loldtheSesteps:1)创建eTheEserWithCreateuser'newuser'newuser'@''localhost'Indedify'pa ssword';。2)GrantreadAccesstoalltablesin'mydatabase'withGrantSelectOnMyDatabase.to'newuser'@'localhost';。3)GrantWriteAccessto'

MySQL中的字符串数据类型包括CHAR、VARCHAR、BINARY、VARBINARY、BLOB、TEXT,排序规则(Collations)决定了字符串的比较和排序方式。1.CHAR适合固定长度字符串,VARCHAR适合可变长度字符串。2.BINARY和VARBINARY用于二进制数据,BLOB和TEXT用于大对象数据。3.排序规则如utf8mb4_unicode_ci忽略大小写,适合用户名;utf8mb4_bin区分大小写,适合需要精确比较的字段。

最佳的MySQLVARCHAR列长度选择应基于数据分析、考虑未来增长、评估性能影响及字符集需求。1)分析数据以确定典型长度;2)预留未来扩展空间;3)注意大长度对性能的影响;4)考虑字符集对存储的影响。通过这些步骤,可以优化数据库的效率和扩展性。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

Atom编辑器mac版下载
最流行的的开源编辑器

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

SublimeText3汉化版
中文版,非常好用