Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Cloud computing learning route source framework notes: Mysql source code three

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

The following is the notes on the cloud computing learning route source framework, and the following is about the third part of the Mysql source code:

Table operation

Create a tabl

Mysql > create tables table name (field type (modifier))

View tabl

View all tables: mysql > show tables

View table records: mysql > show table status like 'table name'

View the table structure: mysql > desc 'table name'

View table records: mysql > select * from 'table name' limit 10

Modify the table

Modify the table name: mysql > rename table 'source table name' to 'new table name

Field record operation

Field

Add field: mysql > alter table 'table name' add 'field' 'modifier'

Delete field: mysql > alter table 'table name' drop 'field'

Modify fields: mysql > alter table 'table name' change 'old field' new field''modifier'

Record

Add record: insert into 'table name (record, record)' values (), (), ()

: insert into 'table name' values (), (), ()

Modify record: update 'table name' set field =''where field =''

Delete record: delete from 'table name' where 'word

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report