MySQL中的建立庫、表以及查詢的基礎語句

來源:互聯網
上載者:User

MySQL中的建立庫、表以及查詢語句對我們以後很好的應用程式資料庫是很大有協助的,本文中是對這些基礎語 句的總結,希望會對大家有些協助

1、建立與刪除資料庫

建立資料庫

mysql> create database testdb;

mysql> create database if not exists testdb;

mysql> create schema if not exists student character set 'gbk' collate 'gbk_chinese_ci';

刪除資料庫

mysql> drop database testdb;    

 

2、建立與刪除表

CREATE TABLE [if not exists] tb_name(col_name,col_definstion,constraint)

建立表

mysql> create table tb (id int unsigned not null auto_increment primary key,Name char(20)

not null,Age tinyint not null);

mysql> create table tb (id int unsigned not null auto_increment,Name char(20) not null,Age

tinyint not null,primary key(id));

mysql> create database mydb;

mysql> use mydb;

mysql> create table students(name char(20) not null,age tinyint unsigned,gender char(1)

not null);

mysql> create table courses(ID tinyint unsigned not null auto_increment primary key,Couse

varchar(50) not null);

mysql> create table courses(name char(20) not null,age tinyint unsigned,gender char(1)

not null);  ---從一張表中查出需要的數並建立為一個新表,但是很多欄位的屬 性沒有存在,需要自己在重新定義

mysql> create table testcourses select * from courses where CID <=2;

以其它表為模板,建立一個新表,欄位的屬性還會存 在

mysql> create table test like courses;

刪除表:DROP TABLE tb_name;

mysql> drop table testcourses;

相關文章

聯繫我們

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