tb_po_price_log.sql
来自「工厂采购系统,DELPHI+SQL SERVER,三层技术」· SQL 代码 · 共 16 行
SQL
16 行
if object_id('dbo.PO_Price_Log') is not null
drop table dbo.PO_Price_Log
go
create table PO_Price_Log
(
item int not null,
Line int not null default (1),
HPN VARCHAR(18) NULL,
Status CHAR(1) not null default 'A',
OLD_Price float not null default 0.0000,
New_Price float not null default 0.0000,
Modify_dt datetime not null default getdate(),
Modified_By varchar(15) not null
)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?