MySQL的基礎(chǔ)介紹
發(fā)表時(shí)間:2023-07-27 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]MySQL的簡(jiǎn)單使用使用MySQL命令行工具Windows 用戶使用: MySQL Client, 輸入密碼Linux:mysql -u用戶名 -p密碼mysql -uroot -p顯示數(shù)據(jù)庫(kù)命令s...
MySQL的簡(jiǎn)單使用
使用MySQL命令行工具
顯示數(shù)據(jù)庫(kù)命令
show databases;
創(chuàng)建數(shù)據(jù)庫(kù)命令
create database 數(shù)據(jù)庫(kù)名;
刪除數(shù)據(jù)庫(kù)命令
drop database 數(shù)據(jù)庫(kù)名;
切換當(dāng)前數(shù)據(jù)庫(kù)
use 數(shù)據(jù)庫(kù)名
use mysql
顯示當(dāng)前數(shù)據(jù)庫(kù)中的全部表
show tables;
建表語(yǔ)句, 在當(dāng)前數(shù)據(jù)庫(kù)中創(chuàng)建表
create table 表名 (列的聲明...)
設(shè)置當(dāng)前命令行窗口的編碼: 設(shè)置當(dāng)前窗口的文本編碼為UTF-8
set names utf8;
執(zhí)行sql腳本命令: 執(zhí)行文本文件中的一批SQL命令.
請(qǐng)注意: 一定要清楚路徑, 保障路徑的正確性!!!
如果SQL文件是UTF-8編碼的, 就必須先執(zhí)行 set names utf8;
source 文本文件的路徑名;
source D:\Robin\Note\note_ziliao\cloud_note.sql
source /home/soft01/note_ziliao/cloud_note.sql
案例: 執(zhí)行腳本建立數(shù)據(jù)表:
source /home/soft01/note_ziliao/cloud_note.sql
show databases;
use cloud_note;
show tables;
案例: 創(chuàng)建一張表, 并且插入數(shù)據(jù).
create database demo;
use demo
create table MyTable(id int, name varchar(100));
insert into MyTable (id, name) values (1, 'Tom');
insert into MyTable (id, name) values (2, 'Jerry');
select id, name from MyTable;
drop table MyTable;
drop database demo;
以上就是MySQL的入門(mén)介紹的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門(mén)到精通的SQL知識(shí)。