原Linux下mysql操作命令大全
領(lǐng)虎沖閱讀數(shù):9812018-09-18
通用連接命令:mysql -uroot -p123456
顯示數(shù)據(jù)庫:mysql> show databases;
創(chuàng)建數(shù)據(jù)庫 :mysql> create database name;
選擇數(shù)據(jù)庫:mysql> use databasename;
直接刪除數(shù)據(jù)庫linux命令大全,不提醒:mysql> drop database name;
刪除數(shù)據(jù)庫前l(fā)inux命令大全,有提示:mysql> mysqladmin drop databasename;
--version:顯示rpm當(dāng)前版本。--version 顯示rpm的當(dāng)前版本。select version(),current_date。
c:\mysql\bin\mysqldump -uroot -proot --databases staffer>e:\staffer.sql。c:\mysql\bin\>mysqldump –u root –p 3306mysql>d:\backup.sql。c:\mysql\bin\mysqldump -uroot -proot staffer>e:\staffer.sql。
數(shù)據(jù)庫還原:mysql -uroot -p table_name < /backup/mysql.sql
顯示表:mysql> show tables;
顯示具體的表結(jié)構(gòu):mysql> describe tablename;
刪除MySQL表的通用SQL語法:mysql> DROP TABLE table_name ;
增加字段:mysql> ALTER TABLE table_name ADD field_name field_type;
修改原字段名稱及類型:mysql> ALTER TABLE table_name CHANGE old_field_name new_field_name field_type;
alter table `$table_name` add column `modified_at` timestamp default current_timestamp on update current_timestamp comment '創(chuàng)建時間/最后修改時間'")。alter table table_name drop constraint stockname_default ---- 刪除stockname的default約束。in [1]: from django.db import connection in [2]: cursor=connection.cursor() in [3]: cursor.execute('alter table authro add age integer')in [8]: cursor.execute('alter table site_prj_author add age integer')(0.014) alter table site_prj_author add age integer。