Simple implementation of Mysql add, delete, modify and query statements Added record: insert into tablename(...) values(...) //If the added record includes all columns, there is no need to write the data list insert into tablename values(...) Delete Records: delete from tablename where condition ; Modification history: update tablename set xx=xx , xx=xx... where condition ; alter table tablename set xx=xx , xx=xx... where condition ; Query records: select (...) from tablename where condition ; select * from tablename where condition ; Delete the entire table: drop table tablename ; Add columns: alter table tablename add column columnname columntype ... ; To delete a column: alter table tablename drop column columnname ; Thank you for reading, I hope it can help you, thank you for your support of this site! You may also be interested in:
|
<<: How to manually upgrade the node version under CentOs
>>: How to use type enhancement without typingscript
Table of contents Development Environment Game en...
What is a table? Table is an Html table, a carrie...
When a company builds Docker automated deployment...
1. First, let's review the relevant knowledge...
Table of contents Problem description: Solution 1...
This article uses the "Attribution 4.0 Inter...
A few days ago, I saw a post shared by Yu Bo on G...
Say it in advance Nodejs reads the database as an...
vsftpd Overview vsftpd is the abbreviation of &qu...
Table of contents 1. JS Object DOM –1, Function –...
Use HSSFWorkbook in Apache.POI to export to Excel...
Example: We use the Python code loop_hello.py as ...
Docker is equivalent to a container, which can bu...
1. Command Introduction The ipcs command is used ...
This article summarizes various ways to implement...