database-connection
| connect to |
MySql |
database on |
localhost |
with username |
dbgreenpepper |
and password |
dbgreenpepper |
and database |
dbgreenpepper |
| set of |
query |
|
select 'test' as x |
| x |
| test |
Query can also work with multiple columns, and the order of columns does not matter
| set of |
query |
|
select 1 as n, 'test' as x |
| x |
n |
| test |
1 |