位置:首頁 > 軟件操作教程 > 數(shù)據(jù)分析 > MySQL > 問題詳情

MySQL——表操作

提問人:劉旭39發(fā)布時(shí)間:2020-10-10
1、建表

  命令:create table <表名> ( <字段名1> <類型1> [,..<字段名n> <類型n>]);

  mysql> create table MyClass(

  > id int(4) not null primary key auto_increment,

  > name char(20) not null,

  > sex int(4) not null default '0',

  > degree double(16,2));

2、獲取表結(jié)構(gòu)

  命令: desc 表名,或者show columns from 表名

  mysql>DESCRIBE MyClass

  mysql> desc MyClass;

  mysql> show columns from MyClass;

3、刪除表

  命令:drop table <表名>

  例如:刪除表名為 MyClass 的表

  mysql> drop table MyClass;

4、插入數(shù)據(jù)

  命令:insert into <表名> [( <字段名1>[,..<字段名n > ])] values ( 值1 )[,

  ( 值n )]

  例如,往表 MyClass中插入二條記錄, 這二條記錄表示:編號(hào)為1的名為Tom的成績(jī)

  為96.45, 編號(hào)為2 的名為Joan 的成績(jī)?yōu)?2.99,編號(hào)為3 的名為Wang 的成績(jī)?yōu)?/p>

  96.5.

  mysql> insert into MyClass values(1,'Tom',96.45),(2,'Joan',82.99),

  (2,'Wang', 96.59);

5、查詢表中的數(shù)據(jù)

  1)、查詢所有行

  命令: select <字段1,字段2,...> from < 表名 > where < 表達(dá)式 >

  例如:查看表 MyClass 中所有數(shù)據(jù)

  mysql> select * from MyClass;

  2)、查詢前幾行數(shù)據(jù)

  例如:查看表 MyClass 中前2行數(shù)據(jù)

  mysql> select * from MyClass order by id limit 0,2;

  或者:

  mysql> select * from MyClass limit 0,2;

6、刪除表中數(shù)據(jù)

  命令:delete from 表名 where 表達(dá)式

  例如:刪除表 MyClass中編號(hào)為1 的記錄

  mysql> delete from MyClass where id=1;

7、修改表中數(shù)據(jù):update 表名 set 字段=新值,… where 條件

  mysql> update MyClass set name='Mary' where id=1;

8、在表中增加字段:

  命令:alter table 表名 add字段 類型 其他;

  例如:在表MyClass中添加了一個(gè)字段passtest,類型為int(4),默認(rèn)值為0

  mysql> alter table MyClass add passtest int(4) default '0'

9、更改表名:

  命令:rename table 原表名 to 新表名;

  例如:在表MyClass名字更改為YouClass

  mysql> rename table MyClass to YouClass;

  更新字段內(nèi)容

  update 表名 set 字段名 = 新內(nèi)容

  update 表名 set 字段名 = replace(字段名,'舊內(nèi)容','新內(nèi)容');

  文章前面加入4個(gè)空格

  update article set content=concat('  ',content);

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部