| Server-Name | mysqld oder mysqld.exe |
|---|---|
| Client-Name | mysql oder mysql.exe |
| Typischer Kommandozeilenbefehl zum Start des Clients | c:\mysql\bin\mysql -h pc236nt.napier.ac.uk -u scott -p gisq
|
| Nützliche Kommandos |
show tables; describe tableX; use databaseY; help source file.txt |
| Achtung! | Fremdschlüssel werden nicht erzwungen. Bei Tabellennamen ist unter Unix Groß- und Kleinschreibung zu beachten. |
C:\>c:\mysql\bin\mysql -h pc236nt.napier.ac.uk -u scott -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 33601 to server version: 3.23.43-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql>use gisq Database changed mysql>SELECT name FROM cia; ... | Western Sahara | | Yemen | | Zambia | | Zimbabwe | +----------------------------------------------+ 261 rows in set (0.01 sec) mysql>exit