久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      如何修改mysql數(shù)據(jù)庫(kù)表結(jié)構(gòu)

      修改mysql數(shù)據(jù)庫(kù)表結(jié)構(gòu)的方法:1、查看表結(jié)構(gòu);2、添加列;3、刪除列,代碼為【mysql> alter table student drop column birthday】;4、修改列,代碼為【mysql> alter table】。

      如何修改mysql數(shù)據(jù)庫(kù)表結(jié)構(gòu)

      本教程操作環(huán)境:windows7系統(tǒng)、mysql8.0.22版,該方法適用于所有品牌電腦。

      相關(guān)免費(fèi)學(xué)習(xí)推薦:mysql數(shù)據(jù)庫(kù)(視頻)

      修改mysql數(shù)據(jù)庫(kù)表結(jié)構(gòu)的方法:

      1、查看表結(jié)構(gòu)

      mysql> show create table student; +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Table   | Create Table                                                                                                                                                                                          | +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | student | CREATE TABLE `student` (   `ID` int(11) NOT NULL AUTO_INCREMENT,   `NAME` varchar(20) NOT NULL,   `AGE` int(11) NOT NULL,   PRIMARY KEY (`ID`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 | +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.09 sec)

      2、添加列

      mysql> alter table student add column birthday datetime; Query OK, 0 rows affected (2.06 sec) Records: 0  Duplicates: 0  Warnings: 0

      3、刪除列

      mysql> alter table student drop column birthday; Query OK, 0 rows affected (0.80 sec) Records: 0  Duplicates: 0  Warnings: 0

      4、修改列

      --1.修改列的類(lèi)型 mysql> alter table student modify age int not null; Query OK, 0 rows affected (0.09 sec) Records: 0  Duplicates: 0  Warnings: 0   --2.修改列的名稱(chēng) mysql> alter table student change column name sname varchar(20); Query OK, 0 rows affected (1.31 sec) Records: 0  Duplicates: 0  Warnings: 0

      相關(guān)免費(fèi)學(xué)習(xí)推薦:編程視頻

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)