
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
To find records that start and end with a certain value use this command. SELECT * FROM [table] WHERE [column] LIKE '[val_ue]';
Read More
To find something that starts with a certain string use this code. SELECT * FROM [table] WHERE [column] LIKE '[value]%';
Read More
To find records containing something use this command. SELECT * FROM [table] WHERE [column] LIKE '%[value]%';
Read More
To select specific records in terminal use this code. SELECT * FROM [table] WHERE [column] = [value];
Read More
To count and select group records in terminal use this command. SELECT *, (SELECT COUNT([column]) FROM [table]) AS count FROM [table] GROUP BY [column];
Read More
To count records enter this command. Take out square brackets and replace names accordingly. SELECT COUNT([column]) FROM [table];
Read More
To select parts of records use this command. SELECT [column], [another-column] FROM [table];
Read More
To explain records use this command. Take out brackets and replace table with your table name. EXPLAIN SELECT * FROM [table];
Read More
To select record in terminal for mysql use this command. Change the value of table and take out the brackets. SELECT * FROM [table];
Read More
For date time input use this function. NOW()
Read More
To insert a record use this command in terminal. Customize the values. INSERT INTO [table] ([column], [column]) VALUES ('[value]', [value]');
Read More
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
To create a new table with columns use this command. CREATE TABLE [table] ([column] VARCHAR(120), [another-column] DATETIME);
Read More
To see all indexes on a table enter this code. show index from [table];
Read More