Explore Topic

terminal

Articles, commentary, and related writing filed under this topic.

Want to know when something new is published about terminal ? Enter your email address below and choose how often you would like to be notified.

We will send you a confirmation email. Your subscription does not become active until you confirm it.

Related Articles

Latest on terminal

30 Articles
Restart MySql in Ubuntu

Restart MySql in Ubuntu

There are times when you might have a database connection error. If you are on the Ubuntu system on Amazon hosting then run this command. sudo service mysql or try this sudo /etc/init.d/mysql start

Read More
Posted by Maximus McCullough
Access MySql Terminal Commands

Access MySql Terminal Commands

In order to access your the mysql part in your terminal you will enter something like this. Access monitor: mysql -u [username] -p; (will prompt for password)

Read More
Posted by Maximus McCullough
Access a Database MySQL Terminal Command

Access a Database MySQL Terminal Command

If you're a developer working with databases, you're probably familiar with MySQL - an open-source relational database management system. While there are many ways to access a MySQL database, one of the most straightforward methods is through the MySQL te

Read More
Posted by Maximus McCullough
Add A Column MySql Terminal Command

Add A Column MySql Terminal Command

If you're working with a MySQL database, you may find that you need to add a new column to a table. Fortunately, adding a column to a MySQL table is a straightforward process that we will do using the MySQL terminal command. Here's how:

Read More
Posted by Maximus McCullough
Export A database Dump Terminal MySql

Export A database Dump Terminal MySql

To export a database use this command in terminal. mysqldump -u [username] -p [database] > db_backup.sql If that does not work for you then you may have created a user in cPanel or some other website management application. You may have to use the --no-ta

Read More
Posted by Maximus McCullough
Select Records Starting

Select Records Starting

To find records that start and end with a certain value use this command. SELECT * FROM [table] WHERE [column] LIKE '[val_ue]';

Read More
Posted by Maximus McCullough
Select A Range MySql Terminal

Select A Range MySql Terminal

To select a range use this code. Take out the brackets and replace the values. SELECT * FROM [table] WHERE [column] BETWEEN [value1] and [value2];

Read More
Posted by Maximus McCullough
Custom Column Output Names Terminal MySql

Custom Column Output Names Terminal MySql

For Custom Column Output Names Terminal MySQL, when selecting data from a table using the SELECT statement, you can customize the output column names. This can be useful when the column names in the table are not descriptive enough or when you want to for

Read More