程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 數據庫的一些知識點復習,數據庫知識點復習

數據庫的一些知識點復習,數據庫知識點復習

編輯:MySQL綜合教程

數據庫的一些知識點復習,數據庫知識點復習


1.     一些知識點

  在計算機的系統屬性中的環境變量PATH中可以加入mysql.exe的路徑(D:\program files\wamp\bin\mysql\mysql5.5.20\bin),使得在任意目錄下都可以使用mysql。舉例來說:在cmd中輸入mysql系統可以識別;

數據庫由許多表組成,可以使用鍵作為表格之間的引用。

2.     一些命令及其使用

a)         創建數據庫:create database suyd;

b)        查看系統中存在的數據庫:show databases;

c)         切換數據庫,默認當前操作在這個庫中:use suyd;

d)        查看數據庫suyd中存在的表:show tables;

e)         創建表:create table users(id int not null auto_increment primary key, username char(30) not null default '', password varchar(32) not null default '', age int not null default 0, sex char(4) not null default '', email varchar(80) not null default '');(引號存在點問題)''

f)         查看創建的表:show tables;

g)        查看表users的具體結構:desc users;

h)        查看創建表users的語句:show create table users;

i)          對表的操作

    插入:insert into users(id, username, password, age, sex, email) values(‘1’, ‘suyd’, ‘123456’, ‘22’, ‘girl’, ‘[email protected]’);

           查詢表users的情況:select * from users; 

    修改:update users set username = ‘su’ where id = 2;

    同時修改多個值:update users set age = 17, sex = ‘girl’;

    同時修改某個人的多個值:update users set age = 20, sex = ‘girl’ where id = 1;

     刪除:delete from users where id = 1;

     查詢

     查詢表的所有情況:select * from users;

     查詢表中某項的情況:select id, username from users;

    按照某種要求查詢表中某項的情況:

       select id, username, age+10 as age10 from users;

           select id, username, age from users where age > 10;

j)           刪除整個表或庫:

     drop table users;

     drop database suyd;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved