This commit is contained in:
PastSaid
2024-03-18 11:42:45 +08:00
parent 08d8878eef
commit c31957eb64
56 changed files with 1485 additions and 123 deletions

View File

@@ -0,0 +1,11 @@
SELECT
a.name ,
b.name
FROM
sysobjects a,
syscolumns b
WHERE
a.id= b.id
AND b.name LIKE '%FSTOCKID'
AND a.type= 'U'
AND a.name LIKE 'T_PRD_PPBOM%'