程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql 復習與學習(二)數據庫及表結構的創建刪除

mysql 復習與學習(二)數據庫及表結構的創建刪除

編輯:MySQL綜合教程

mysql -h localhost -uroot -p123456 //連接數據庫

show databases; //查看數據庫

create database if not exists db_goods; //創建數據庫

use db_goods; //使用數據庫

show tables; //查看數據庫裡表

create table goods(id int, name varchar(10)); //創建表

desc goods; //查看標結構

insert into goods(id, name) values('1', 'zhangsan'); //表中插入數據

update goods set name = 'lisi', id = '3' where id = '1'; // 更新數據

delete from goods where id = '1';//刪除數據

drop table if exists goods; //刪除表

drop database if exists db_goods; //刪除數據庫

? contents; //查看幫助

? create table;//查看創建表幫助

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