23 lines
366 B
Transact-SQL
23 lines
366 B
Transact-SQL
|
|
USE [ASRS_WXZD_JYMH_CPK]
|
|
|
|
GO
|
|
insert into sys_string_resource values('zh_CN', 'color', '颜色')
|
|
go
|
|
insert into sys_string_resource values('zh_CN', 'zxrq', '装箱日期')
|
|
go
|
|
update sys_string_resource set caption='条码' where id='txm';
|
|
go
|
|
|
|
SET ANSI_PADDING ON
|
|
|
|
|
|
GO
|
|
|
|
CREATE NONCLUSTERED INDEX [IX_cpptm_bak__lpxx] ON [dbo].[cpptm_bak]
|
|
(
|
|
[lpxx] ASC
|
|
)
|
|
INCLUDE ( [id])
|
|
GO
|