SQL Analysis Report

Analysis Summary

File Nums

2

File Size

5.8 kB

SQL Fingerprints

32

Total SQL Executions

56

SQL Type Distribution

Nums of Join Tables Distribution

Display Settings

sqlid sqltype fingerprint tablelist execution
EED022D709B5DA4D QUERY
select id, name, salary, rank() over (order by salary desc) as salary_rank from users
Expand
users
Expand
1
D08D166618E6BC67 QUERY
select * from users where age > ?
Expand
users
Expand
1
389FF9DA2DF3DF62 QUERY
select user()
Expand
2
6153D798A9A4EDE2 DDL
create table users ( id int auto_increment primary key, name varchar(?), age int, city varchar(?), salary decimal(?,?) )
Expand
users
Expand
1
5896D1096D9B558C ELSE
set global general_log=?
Expand
2
831AD2FB940FC23C QUERY
select * from users where id = ?
Expand
users
Expand
12
0FD9925997B03211 QUERY
select city, count(*) as user_count from users group by city
Expand
users
Expand
2
1E673FAA643367F1 QUERY
select city, count(*) as user_count from users group by ;
Expand
users
Expand
1
6E3F90DDBC12719C QUERY
select * from users where salary > (select avg(salary) from users)
Expand
users
Expand
1
87BAE6DA99D190A9 QUERY
select city, avg(age) as avg_age from users group by city
Expand
users
Expand
1
E2614CE311B973BF QUERY
select count(*) as total_users from users
Expand
users
Expand
1
16777FECB752BF05 QUERY
select * from users order by salary desc limit ?
Expand
users
Expand
2
132628303F99240D ELSE
show tables
Expand
2
E745E369AC71BBCE QUERY
select * from users where salary = (select max(salary) from users)
Expand
users
Expand
1
775176AEFB28854F DML
insert into users (name, age, city, salary) values(?+)
Expand
users
Expand
1
50826535B529468B ELSE
create database test
Expand
1
E3A3649C5FAC418D QUERY
select @@version_comment limit ?
Expand
2
5CBA2034458B5BC9 ELSE
show databases
Expand
3
5CA6471E3081F236 QUERY
select * from users where salary > ?
Expand
users
Expand
1
3811A994C76CADDF QUERY
select city, avg(salary) as avg_salary from users group by city
Expand
users
Expand
1
8FFAA729489F3E87 UNKNOWN
users
Expand
1
8975B8BDEEFF43EF QUERY
select * from users order by salary limit ?
Expand
users
Expand
1
4A11D1AA18F0F632 QUERY
select city, sum(salary) as total_salary from users group by city
Expand
users
Expand
1
F9ED821CF82F6961 UNKNOWN
admin@127.0.0.1 on using tls
Expand
2
EF3C0A967687DF79 QUERY
select * from users u1 where salary = (select max(salary) from users u2 where u1.city = u2.city)
Expand
users
Expand
2
495055AD0EA17C56 QUERY
select id, name, city, salary, rank() over (partition by city order by salary desc) as city_salary_rank from users
Expand
users
Expand
1
493C7CF9A5F95BAB QUERY
select id, name, salary, salary - lag(salary) over (order by salary desc) as salary_diff from users
Expand
users
Expand
1
CADE4E832627B4F6 UNKNOWN
test
Expand
2
FB38455BF7035609 QUERY
select database()
Expand
3
F7A6F402D75C6880 QUERY
select avg(salary) as avg_salary from users
Expand
users
Expand
1
7DD5F6760F2D2EBB ELSE
show variables like ?
Expand
1
730CAA82684CDE50 ELSE
select * from users where city = ? union select * from users where salary > ?
Expand
users
Expand
1