+ 2
Sql command line
how can I use sql command line
3 Respuestas
+ 1
See this link below, it shows you five ways to manage the database, including the so called command line. I am supposing you are using MySQL.
http://www.techrepublic.com/blog/five-apps/five-tools-to-help-you-manage-your-mysql-databases/
+ 1
which book is best for learning Linux for biggener
0
In your bash type: mysql -u #YourUsername# -p
You'll get ask to type the password for the given user.
You set an username and password when you installed mysql-server.
If you logged in you are able to execute sql statements like SELECT * from userdb.user where username = "John";