alter table tmplisting add 列名 varchar(max)--新增一列
select name from syscolumns where id = object_id('') --查詢資料表所有列名
create procedure checkindata
as begin
declare circle cursor for
select sku,售價 from dbo.amazon_listing_uk
declare @sku int,@price nvarchar(50)
open circle
fetch next from circle into @num,@price
while @@fetch_status=0
begin
print @num
insert dbo.listing_uk( sku,售價)
values(@sku,@price)
fetch next from circle into @num,@price
end
close circle
deallocate circle
end --使用游標
--遠端連線資料庫
select * from opendatasource('sqloledb','data source=192.168.0.11;user id=sa;password=sa').[bscdb_test].[dbo].[listing_us]
--查詢兩行資料部分內容相同部分不同
select * from [amazon_fba訂單] a
where exists (
select 1
from [amazon_fba訂單] b
where b.[amazon-order-id] = a.[amazon-order-id] and a.[shipment-id] <> b.[shipment-id]
)
select charindex(',',列名)-1 from 表名 --按特殊符號拆分
select max(列名) from 表名
select ident_current('表名')
--獲得某列最大值
SQL語句彙總
檢視oracle伺服器端字符集 select from nls database parameters 檢視oracle客戶端字符集 select from nls instance parameters 全庫匯出資料 exp 使用者名稱 密碼 遠端的ip 埠 例項 file 存放的位置 檔名稱.d...
SQL語句彙總
sql語句彙總 一 資料庫 1.建立資料庫 create database name 2.檢視資料庫 show databases 3.選擇資料庫 use name 4.刪除資料庫庫 drop database name 二 表 1.建立表 create table name 屬性名 資料型別 屬性...
部分重要SQL語句
to char date,fmt 用於將日期或時間戳轉換成varchar2型別字串,如果指定了格式字串,則用它控制結果的結果。格式控制串由格式元素構成。格式控制串必須用單引號括起來 select to char sysdate,dd mon yy hh24 mi ss rigth now from ...