剛剛接觸資料庫,簡單記錄下使用的基本命令和知識
在mysql控制台下建立資料庫出現以下資訊:
mysql> create databa***inci;
error 1044 (42000): access denied for user ''@'localhost' to database 'xinci'
2. 解決方法:
執行以下命令進入控制台:
mysql --user=root -p
輸入root使用者的密碼即可進入mysql控制台:
建立資料庫:
create databa***inci;
顯示所有資料庫:
show databases;
選擇使用的資料庫
mariadb [(none)]> use xinci
database changed
mariadb [xinci]> show tables
建立表
mariadb [xinci]> create table user(
-> id int not null auto_increment,
-> name varchar(10) not null,
-> primary key ( id )
-> );
query ok, 0 rows affected (0.03 sec)
顯示表狀態
插入內容
mariadb [xinci]> insert into user values (2,"xiaomi"),(3,"leshi");
query ok, 2 rows affected (0.00 sec)
records: 2 duplicates: 0 warnings: 0
檢視表內容
在表中刪除匹配的資料
delete from 表 where id = '001';
插入資料 : alter table news add m_name varchar(64) null
alter table news add starttime int not null
檢視表結構:
desc 表名;
show columns from 表名;
describe 表名;
show create table 表名;
use information_schema
select * from columns where table_name='表名';
mysql基本命令總結 mysql基本命令總結
1.在ubuntu上安裝mysql sudo apt get install mysql server sudo apt get install mysql client 2.安裝結束後,用命令驗證是否安裝並啟動成功 sudo netstat tap grep mysql 通過上述命令檢查之後,如果...
MySQL安裝和基本命令
windows10安裝 解壓到指定目錄 服務端初始化 e mysql 5.7.16 winx64 bin mysqld initialise insecure 此時使用者名稱 root 密碼 空,需要設定 環境變數的配置 e mysql 5.7.16 winx64 bin 設定windows服務,就...
mysql基本命令
第一招 mysql服務的啟動和停止 net stop mysql net start mysql 第二招 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是...