The basics of MySQL knowledge points for the second-level computer exam, common MYSQL commands, as follows Commonly used MYSQL commands (add computer secondary sites to favorites) Start: net start mySql; Enter: mysql -u root -p/mysql -h localhost -u root -p databaseName; List databases: show databases; Select database: use databaseName; List tables: show tables; Create a data table: mysql> CREATE TABLE mytable (name VARCHAR(20), sex CHAR(1), -> birth DATE, birthaddr VARCHAR(20)); Display the properties of table columns: show columns from tableName; Modify the table structure: DESCRIBE mytable; Create a database: source fileName.txt; Matching characters: You can use the wildcard character _ to represent any character, and % to represent any string; Add a field: alter table tabelName add column fieldName dateType; Add multiple fields: alter table tabelName add column fieldName1 dateType,add columns fieldName2 dateType; Multi-line command input: Note that words cannot be broken; when inserting or changing data, the string of the field cannot be expanded to multiple lines, otherwise the hard return will be stored in the data; Add an administrator account: grant all on *.* to user@localhost identified by "password"; After entering each statement, add a semicolon ';' at the end, or add '\g'; Query time: select now(); Query the current user: select user(); Query the database version: select version(); Query the currently used database: select database( ); The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. Finally, I wish you all success in passing the computer level test. You may also be interested in:
|
<<: Security configuration and detection of SSL after the website enables https
>>: A record of pitfalls in JS regular matching
Why is it stuck? There is a premise that must be ...
I summarized the previous notes on installing MyS...
A simple calculator written in WeChat applet for ...
Preface <br />I have been working in the fro...
1. Modify 1 column update student s, city c set s...
Table of contents Overview Method 1: Pass paramet...
Preface: Jenkins' Master-Slave distributed ar...
Server Status Analysis View Linux server CPU deta...
Give time time and let the past go. In the previo...
Effect display: Environment preparation controlle...
CSS: 1. <link type="text/css" href=&q...
1. Dynamic Components <!DOCTYPE html> <h...
Table of contents 1. Gojs Implementation 1. Drawi...
You can use the trigger method. There is no native...
The question is referenced from: https://www.zhih...