mysql常用sql彙總

2022-01-30 00:33:33 字數 688 閱讀 3697

alter  table  student add zz int(11) default 0 comment '

0是授權 1未授權

'給表student 新增乙個zz的字段 預設是0 後面是注釋

alter table student drop column nick

給表student刪除nick欄位

1.表table1的資料插入到表table2中。表table2要存在

insert

into table2(字段, 字段, 字段) select 字段,字段,字段 from

table1;

或者insert

into table2 select

*from table1

注意:只是追加資料,

select concat(round(2/3

*100,2),"%")

alter  table  tb_data_operation_import_log add import_result varchar2(250);

comment on column tb_data_operation_import_log.import_result  is

'匯入結果

';

Mysql常用SQL彙總

今天的部落格主題 資料庫篇 mysql mysql常用sql彙總 目錄 字段合併去重 查詢結果追加自定義字串 查詢當天的資料 今天工作當中被同事問道資料庫需要兩個字段合併去重。簡單粗暴點,直接上code 表資料 需求 來吧三部曲 第一步 合併aa bb 字段 注意 這一步合併的時候根據欄位的分割符號...

mysql去重彙總 Mysql常用SQL彙總

今天的部落格主題 資料庫篇 mysql mysql常用sql彙總 目錄字段合併去重 查詢結果追加自定義字串 查詢當天的資料 字段合併去重 今天工作當中被同事問道資料庫需要兩個字段合併去重。簡單粗暴點,直接上code 表資料 需求 來吧三部曲 第一步 合併aa bb 字段 注意 這一步合併的時候根據欄...

Oracle 常用sql彙總

原文傳送門 select b.table name as 表名 c.comments as 表說明 b.column id as 字段序號 b.column name as 欄位名 concat concat concat b.data type,b.data length as 字段資料型別 b....