摘要:前端狗初學(xué),記錄一下用戶登錄查看數(shù)據(jù)庫創(chuàng)建數(shù)據(jù)庫進(jìn)入數(shù)據(jù)庫查看數(shù)據(jù)庫中的所有表創(chuàng)建表信息設(shè)置作為主鍵,的值不能為空,的默認(rèn)值是,備注為信息。查看表結(jié)構(gòu)查看表格創(chuàng)建信息查看表數(shù)據(jù)插入數(shù)據(jù)二哈計(jì)算機(jī)刪除數(shù)據(jù)修改數(shù)據(jù)物聯(lián)網(wǎng)
前端狗初學(xué)MySQL,記錄一下
1、用戶登錄:
mysql -uroot -p
2、查看數(shù)據(jù)庫:
show databases;
3、創(chuàng)建數(shù)據(jù)庫:
create database firstsql;
4、進(jìn)入數(shù)據(jù)庫:
use firstsql
5、查看數(shù)據(jù)庫中的所有表:
show tables;
6、創(chuàng)建表:
create table student( ID char(7) primary key, NAME varchar(20) not null, Age varchar(20) default "10" )comment="信息";
設(shè)置ID作為主鍵,NAME的值不能為空,Age 的默認(rèn)值是10,備注為信息。
7、查看表結(jié)構(gòu)
desc firstsql.student;
8、查看表格創(chuàng)建信息
show create table student;
9、查看表數(shù)據(jù)
select * from student; select ID,NAME,Age from Student; select * from Student where ID="001";
10、插入數(shù)據(jù)
insert into student values ("001","二哈","計(jì)算機(jī)");
11、刪除數(shù)據(jù)
delete from student; delete from student where ID="001";
12、修改數(shù)據(jù)
update student set NAME="物聯(lián)網(wǎng)" where ID="001";
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/98647.html
摘要:數(shù)據(jù)庫數(shù)據(jù)庫入門教程系列工具掘金工具共同編輯,修正錯(cuò)誤,這里點(diǎn)擊進(jìn)去在這里持續(xù)更新由于軟件是基于模式的數(shù)據(jù)庫管理系統(tǒng)一個(gè)客戶機(jī)服務(wù)器,因此在日常各種工作中,可以通過各種客戶端軟件來與數(shù)據(jù)庫管理系統(tǒng)關(guān)聯(lián)。 MySQL入門教程系列-1.5 如何學(xué)習(xí)MySQL - 掘金 在這里持續(xù)更新 MySQL入門教程系列-1.5 如何學(xué)習(xí)MySQL 如何學(xué)習(xí) MySQL 這是一個(gè)偽命題,每個(gè)人都有適合自...
閱讀 2591·2021-09-26 10:17
閱讀 3221·2021-09-22 15:16
閱讀 2131·2021-09-03 10:43
閱讀 3258·2019-08-30 11:23
閱讀 3658·2019-08-29 13:23
閱讀 1301·2019-08-29 11:31
閱讀 3686·2019-08-26 13:52
閱讀 1394·2019-08-26 12:22