常用SQL語句

2022-07-29 01:42:06 字數 915 閱讀 3408

1、建立表

create table 表名(屬性1  型別,屬性2 型別,屬性3 型別...)

exp:create table tf_consumercapacity_ayalyze(tradedate char(8),moneytype char(1),amount integer );

2、修改表中的某個屬性

alter  table  表名  modify (屬性1 型別,屬性2 型別...)

alter  table     tf_consumercapacity_ayalyze     modify     (moneytype   char(2) );  

3、刪除表

drop  table 表名

exp: drop  table tf_customerage_analyse

4、刪除表中的某些資料

delete  from 表名  where 條件

delete  from tf_consumercapacity_ayalyze t where t.moneytype='04'  and tradedate='20170819' and amount='24'

5、插入資料到表裡

insert into 表名(屬性1,屬性2...) values(值1,值2)

6、批量查入某個表中的部分資料

insert into 表名1(屬性1,屬性2...) select 值1,值2...from 表名2 條件

insert into tf_customerage_analyse(tradedate,consumertype,amount) select tradedate ,'3',11 from tf_user_rank where rownum < 11

注意:這裡的select tradedate ,這裡是指插入tradedate中的所有值

sql常用sql語句

1 查詢某個庫中所有的表名字 select name from sysobjects where xtype u and name dtproperties order by name 2 得到資料庫中所有使用者檢視 select name from sysobjects where xtype v...

常用sql語句

t sql語句複製表的方法 我在sql server 2000中有現個資料庫datahr及demo,它們的結構是一樣,其它有乙個表名為 gbitem.現在我想將demo資料庫的表名 gbitem的全部內容複製到datahr資料庫的表名為 gbitem中。請問此t sql語句應該怎麼寫?謝謝高人指點!...

常用SQL語句

查詢 sp who 中的結果值。因為儲存過程不能查詢,先轉為臨時表再查詢。declare tb table spid varchar 100 ecid varchar 100 status varchar 100 loginame varchar 100 hostname varchar 100 b...