To access a MySQL server from the shell prompt (command line), you will need to use the MySQL command-line client. The MySQL command-line client is a command-line tool that allows you to connect to a MySQL server and execute SQL statements.
Here are the steps to access a MySQL server from the shell prompt (command line) using the MySQL command-line client:
mysql -u username -pSource:www.lautturi.com
Replace "username" with the username of a MySQL account that has access to the server. You will be prompted to enter the password for the account.
mysql> SELECT * FROM users;
This will execute a SELECT statement that retrieves all rows from the "users" table.
With these steps, you should be able to access a MySQL server from the shell prompt (command line) and execute SQL statements using the MySQL command-line client.
Note: The MySQL command-line client is just one way to access a MySQL server from the command line. You can also use other tools such as the "mysqlsh" or "mysqldump" command-line utilities to connect to and manipulate a MySQL server from the command line.