Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
select * from `menu`
1.06msParams | |
---|---|
hints | Use SELECT * only if you need all columns from tableThe SELECT statement has no WHERE clause and could examine many more rows than intended |
select * from `posts`
3.23msParams | |
---|---|
hints | Use SELECT * only if you need all columns from tableThe SELECT statement has no WHERE clause and could examine many more rows than intended |
select * from `menu` where `is_active` = '1' order by `stt` asc
670μsParams | |
---|---|
0 | 1 |
hints | Use SELECT * only if you need all columns from table |
select * from `users`
600μsParams | |
---|---|
hints | Use SELECT * only if you need all columns from tableThe SELECT statement has no WHERE clause and could examine many more rows than intended |
select * from `page_value` where `object` = 'page_config'
490μsParams | |
---|---|
0 | page_config |
hints | Use SELECT * only if you need all columns from table |
select * from `config` where `key` = 'webcon_en' order by `id` asc
430μsParams | |
---|---|
0 | webcon_en |
hints | Use SELECT * only if you need all columns from table |
select * from `menu` where `alias_en` = 'airport-advertising'
440μsParams | |
---|---|
0 | airport-advertising |
hints | Use SELECT * only if you need all columns from table |
select * from `menu` where `alias_en` = 'airport-advertising'
300μsParams | |
---|---|
0 | airport-advertising |
hints | Use SELECT * only if you need all columns from table |
select * from `page_value` where `page_id` = '29'
320μsParams | |
---|---|
0 | 29 |
hints | Use SELECT * only if you need all columns from table |
select * from `page_value` where `page_id` = '29'
290μsParams | |
---|---|
0 | 29 |
hints | Use SELECT * only if you need all columns from table |
select count(*) as aggregate from `posts` where `group_id` = '23' and `is_active` = '1'
500μsParams | |
---|---|
0 | 23 |
1 | 1 |
select * from `posts` where `group_id` = '23' and `is_active` = '1' order by `date_create` desc limit 9 offset 0
550μsParams | |
---|---|
0 | 23 |
1 | 1 |
hints | Use SELECT * only if you need all columns from table |