Hi!
This is my testing code, where i'm trying to understand what is going on.
The result of the code:
In my opinion it should return the same, but it dosen't..
Do anyone know if this is a general issue or i'm doing something wrong.
Best Regards
This is my testing code, where i'm trying to understand what is going on.
Code:
command /test:
trigger:
#Database Variables
set {_sqlConnection} to yaml value "mc250391" from file "plugins/Yaml/MySQL/database.yml"
set {_sql} to the database "%{_sqlConnection}%"
set {_column} to "kills"
execute "SELECT * FROM stats ORDER BY %{_column}% DESC LIMIT 1 OFFSET 0" in {_sql} and store the output in {_top1::*}
message "First Call: %{_top1::uuid::*}%"
execute "SELECT * FROM stats ORDER BY kills DESC LIMIT 1 OFFSET 0" in {_sql} and store the output in {_top2::*}
message "Second Call: %{_top2::uuid::*}%"
The result of the code:
In my opinion it should return the same, but it dosen't..
Do anyone know if this is a general issue or i'm doing something wrong.
Best Regards