goodclassingbase.txt

来自「PosEasy收银系统源码,Pos机前后台管理代码」· 文本 代码 · 共 10 行

TXT
10
字号
if exists (select * from sysobjects where id = object_id(N'[dbo].[goodclassingbase]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[goodclassingbase]
GO

CREATE TABLE [dbo].[goodclassingbase] (
	[商品名称] [char] (30) NOT NULL ,
	[更新人] [char] (10) NULL ,
	[日期] [datetime] NULL 
) ON [PRIMARY]
GO

⌨️ 快捷键说明

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