我正在尝试打开mySql用于学习目的,但我有点困惑
我在网上发现了几十个教程,但没有一个解释基本的东西,而是 - 他们解释如何操纵信息本身的语法。
我现在对此并不感兴趣。
我可以在几个问题上使用一些帮助:
我发现到处都是打开mySql解释器的正确方法(这是什么?)从shell运行以下命令:
mysql database_name -h host -u username -p
where(并纠正我,如果我错了)'mysql'是interperter,'database_name'是我想要使用的数据库,host是数据库所在服务器的名称,'username '是用户的名称 - 客户端。
先谢谢你。
答案 0 :(得分:2)
答案 1 :(得分:2)
What do the words "server" and "client" have to do here anyway? I'm not trying to connect anywhere.
Second, where exactly do the files themselves sit on my computer (meaning the path to the database-files itself), and how do I find it?
Is it possible to have several databases?
How come the command 'mysql' alone (without "database_name -h host -u username -p") also opens the interpreter for me?