建表: create table t_name(`***` bigint(20) not null)...engine選擇引擎,charest選擇編碼
表改名:alter table old_name rename new_name;
清空表資料:delete * from table_name;(逐條刪除,會寫mysql log, 不會清除auto變數, 適用於刪除部分表資料);
truncate table table_name;(整體刪除, 不會寫mysql log, 會清除auto變數, 適用於清空表資料);
顯示:show databases;
show tables;
desc tables;
show processlist;顯示連線數
show table status;顯示某婊所佔磁碟空間;
儲存過程:匯出》# mysqldump -uroot -p pass -h localhost -p -r dbname > file.sql
匯入 source path
匯出表結構》# mysqldump -uroot -p -d dbname > file.sql
排序(可用於分頁): select * from t_table order by '字段';
反向排序:select * from t_table order by '字段' desc;
linux常用命令 持續更新
linux小白,邊做其他程式設計遇到邊學習。ubuntu獲取root許可權 ubuntu的預設root密碼是隨機的,每次開機都會有乙個新的root密碼。如果想進入到root許可權可以通過以下方法 1.sudo password 2.如果是第一次使用sudo則需要輸入你的使用者密碼,然後終端會提示輸入...
持續更新 adb常用命令
參考 1.adb reboot 重啟 2.adb reboot bootloader 重啟到刷機模式 3.adb reboot recovery 重啟到恢復模式 4.adb install r 保留資料快取,重新安裝apk 5.adb uninstall k 解除安裝apk,但保留資料快取 6.ad...
Git 常用命令 持續更新
1.git init 初始化 2.git clone 轉殖 到本地 3.git fetch 從遠端倉庫獲取最新的 4.git pull 把遠端的 更新到本地 5.git add 那本地的 提交到stage中 6.git commit m comments 把stage中的修改 提交到本地倉庫 7.g...