密碼修改:mysqladmin -uroot -p(原始密碼) password "123"
檢視使用者資訊:select user();
跳過正常登入:mysqld_safe --skip-grant-tables,然後開啟另外乙個終端
然後更改密碼:update mysql.user set password=password("") where user="root" and host="localhost";
最後重新整理: flush privileges;
顯示mysql程序: ps aux |grep mysql
殺死程序kill -9 (pid)
mac平台
檢視編碼: \s
sql語句
檢視當前所在的庫(資料夾):select database();
檢視操作幫助資訊: help select
操作資料夾(庫)
增create database db1 charset utf8;
查show create database db1;
show databases;
改alter database db1 charset gbk;
刪drop database db1;
操作檔案(表)
切換資料夾
use db1;
增create table t1(id int,name char);
查show create table t1;
show tables;
desc t1;
改alter table t1 modify name char(6);
alter table t1 change name name char(7);
刪drop table t1;
操作檔案內容(記錄)
增insert t1(id, name) values(1,'egon1'),(2,'egon2'),(3,'egon3');
insert values(1,'egon1'),(2,'egon2'),(3,'egon3');
查select id,name from t1;(如果不在db1在t1前加入db1)
select * from t1;
改update db1.t1 set name='sb'; (db1同理)
update db1.t1 set name='sb' where id=2;
刪delete from t1;
delete from t1 where id=2;
ORCALE資料庫基礎之SQL基本查詢語句
select語句的作用 查詢指定的行 查詢指定的列 多張表聯合查詢 select 語句可以查詢指定的行,指定的列,也可以多張表聯合查詢來獲得資料。上面的三句話,開宗明義的定義了sql 的基本功能,書寫高效的sql語句是我們永恆的追求,不管你是程式設計師還是資料庫管理員。select既是入門所必備,又...
java Annotation 拼裝SQL語句
宣告字段對映 target elementtype.field retention retentionpolicy.runtime public inte ce filedref 宣告表對映 target elementtype.type retention retentionpolicy.runt...
SQL之基礎篇
說明儲存空間 bitbit資料型別是整型,其值只能是0 1或空值。這種資料型別用於儲存只有兩種可能值的資料,如yes 或no true 或false on 或off.很省空間的一種資料型別,如果能夠滿足需求應該盡量多用。1位元組tinyint tinyint 資料型別能儲存從0到255 之間的整數。...