1、查詢列名(第乙個引數為資料庫名,第二個引數為表名)
select column_name from information_schema.columns where table_schema='test' and table_name='tb_grade';
2、顯示表結構
desc information_schema.columns;
3、複製一張表
create table test as select * from tb_grade;
4、新增字段
alter table tb_grade add aaa int,add bbb int;
5、修改字段
alter table tb_grade modify aaa varchar(10), modify bbb varchar(10);
6、刪除字段
alter table tb_grade drop aaa,drop bbb;
7、篩選這樣的重複行,如下圖所示
select * from temp t where not exists(select 1 from temp where t.a=b and t.b=a and t.c
MySQL 儲存過程常用SQL語句收集
1,select curdate 2016 10 08 2,select date sub curdate interval 6 day 2016 10 02 3,case when then else 拼接條件查詢 where case when ifnull belongcity,0 0 or ...
PGSQL語句收集
1.sql複製原表資料結構 create table au.test1 as select from au.config where 1 2 2.在複製的新錶中的某列插入原始資料 insert into au.test 1 uuid select uuid from au.config 3.將其它列...
SQL語句收集
use tablename 要操作的資料庫名 select logicalfilename tablename log 日誌檔名 maxminutes 10,limit on time allowed to wrap log.newsize 1 你想設定的日誌檔案的大小 m setup initia...