创建表用create table
插入数据用insert into xxx values
查询数据用select 字段 from 表 where 条件
排序:升序用asc 降序用desc
1、创建测试表,
create table test_order(id number, value1 number, value2 number)
2、插入测试数据
insert into test_order values(1,1001,2001)
insert into test_order values(2,1002,2002)
insert into test_order values(3,1003,2003)
insert into test_order values(4,1004,2004)
insert into test_order values(5,1005,2005)
3、查询表中所有记录数,select t.*, rowid from test_order t,
4、编写sql,按value1字段做升序,按value2字段做降序,
select t.*,
row_number() over(order by value1) rn1,
row_number() over(order by value2 desc) rn12
from test_order t
mysql建立索引升序结果看法如下:(1)从表t1中选择第一行,查看此行所包含的数据。
(2)使用表t2上的索引,直接定位t2中与t1的值匹配的行。类似,利用表t3上的索引,直接定位t3中与来自t1的值匹配的行。
(3)扫描表t1的下一行并重复前面的过程,直到遍历t1中所有的行。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)