Create a data table and open the database USE database name mysql> USE D1; Database changed uses USE D1; means to open database D1, we can view the currently open database through SELECT DATABASE();: mysql> SELECT DATABASE(); +----------------+ | DATABASE() | +----------------+ | d1 | +------------+1 row in set (0.00 sec)Create data tableCREATE TABLE [IF NOT EXISTS] table_name (col
1. About Detailed explanation of MySQL data table operations
## Introduction: This article introduces what commands need to be used to operate the database
##2.Use the Monkey command to quickly slide the screen
#Introduction: 1. Introduction to Monkey Testing Monkey testing is a means of automated testing on the Android platform. The Monkey program simulates user operations such as touching the screen, sliding the Trackball, and pressing buttons to test the program on the device. Conduct a stress test to detect how long it will take for the program to become abnormal. 2. Introduction to the Monkey program 1) The Monkey program comes with the Android system and is written in Java language.
3.
MySQL Terminal Management Database Operation GuideIntroduction: MySQL has many visual management tools , such as "mysql-workbench" and "sequel-pro-". Now I am writing an article about MySQL terminal command operation because I want to strengthen my understanding of MySQL. It will always be better than using graphical...
4.
mysql Commonly used Command usage summary Script House compiled versionIntroduction: In daily work, I will simply use mysql, so I will summarize the common command operations. The common methods are as follows
5.
MySQL command operation under Linux platform# #Introduction: Linux shell batch creation database/table Shell script is as follows: # create database and table HOST=
##6. MySQL database common command usage
7. MySQL database INNODB table damage repair process
8. Basic operations of MySQL terminal (Terminal) to manage databases, data tables, and data
9. Common operations on the Mongodb database command terminal
Introduction: Basic commands for database operations Common commands for database operations 1. Help View command prompts help db.help(); db.yourColl.help(); db.youColl.find().help(); rs. help(); 2. Switch/create database use yourDB; When creating a collection (table), the current database will be automatically created 3. Query all databases show dbs; 4. Delete
[Related Q&A recommendations]:
php - linux command to operate the file and replace the data of each line
github - Are the gitbash and git shell command operations the same?
The above is the detailed content of 9 recommended articles about database command operations. For more information, please follow other related articles on the PHP Chinese website!