bulkcopy.sql

来自「sybase linux or unix develope library pa」· SQL 代码 · 共 13 行

SQL
13
字号
use tempdbgoif exists ( select 1 from sysobjects where name = 'test_pubs')	drop table test_pubsgocreate table test_pubs( pub_id		int,			pub_name	varchar(40) null,			city		varchar(20) null,			state		char(2)     null,			notes		varchar(255) null)go

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?