Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
select * from `questions` limit 1
52.55msparaiso3_asesorParams | |
---|---|
hints | Use SELECT * only if you need all columns from tableThe SELECT statement has no WHERE clause and could examine many more rows than intendedLIMIT without ORDER BY causes non-deterministic results, depending on the query execution plan |
select * from `options` where `options`.`question_id` in ('1')
41.95msparaiso3_asesorParams | |
---|---|
0 | 1 |
hints | Use SELECT * only if you need all columns from table |