Java-web開發之DB

來源:互聯網
上載者:User

標籤:

1.MySql簡介

   MySql是一個開放源碼的小型資料庫管理系統,開發人員為瑞典MySql AB公司,目前屬於Oracle公司。

   由於其體積小,速度快,總體成本低,尤其是開發原始碼這點,被中小型網站廣泛使用。

2.mysql常用資料類型

3.SQL簡介

   結構化查詢語言 (SQL)SQL(Structured Query Language)是最重要的資料庫操作語言。主要用於資料庫通訊通訊

4.常用命令

   mysql > show databases ; //顯示所有的資料庫

   mysql > use   <資料庫名>; //開啟名字為"資料庫名"的資料庫

   mysql > create database  <資料庫名> ;//建立一個“資料庫名”的資料庫

   mysql > drop database <資料庫名> ;//刪除資料庫,eg: drop database androidtest

   mysql > create table <表名> (<欄位1定義>,<欄位n定義>); //建立表

                欄位n定義: 欄位名,類型,寬度,非空修飾符,default修飾符,auto_increment修飾符

                eg:create table customer(id int auto_increment primary key,name varchar(10) default ‘張三‘,

                                                      pass varchar(12) not null, createdate date);

              

    mysql >show tables ;//顯示表,只顯示所有表的名稱。

    mysql >describe <表名>;//顯示表的所有資訊

    mysql >drop tabel [if exists] 資料表名 ;//刪除表

    mysql >

 

Java-web開發之DB

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.