mysql 資料庫基礎筆記

來源:互聯網
上載者:User

進入 安裝目錄.../bin/mysql.exe

cd 更換目錄 dir列出目前的目錄所有檔案

c:\vesa\...\a> 角括弧表示在c盤/的vasa/的.../的a 檔案夾裡面

cd空格.. 表示向上一級目錄

cd空格目錄名 表示進入指定目錄

cd空格ted健 表示順序查看目錄名

>mysql 空格 -u使用者名稱 -p密碼 (即通過使用者名稱 密碼連資料庫)

show databases; 顯示所有資料庫

use 資料庫名; 表示進入資料庫

show tables; 顯示所有資料表

select * from 資料表名; 查看資料表裡的資料

插入:insert into 欄位名(省略不寫的表示所以欄位)values 值; (欄位名1->值1 欄位名2->值2...順序一樣個數一樣)

更新:update 表名 set 欄位名 = 值; (where 欄位名=值 and 欄位名=值)

查詢:select 欄位列表 from 表名;(where 欄位名=值 and 欄位名=值)

刪除:delete from 表名;(where 欄位名=值 and 欄位名=值)

建立資料庫:create database 資料庫名;

刪除列表:drop table 表名 ...;

刪除資料庫:drop database 資料庫名;

查看錶屬性:describe 表名;

修改表屬性:alter table 表名 modify column 欄位名 類型;

修改表名:rename table 原表名 to 以後的表名;

建立資料表:create table 資料表名(項名 類型 . .,項名 類型 . .,......);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.