10
sql/check_surgery_fields.sql
Executable file
10
sql/check_surgery_fields.sql
Executable file
@@ -0,0 +1,10 @@
|
||||
-- 检查手术表中所有字段是否存在
|
||||
SELECT
|
||||
column_name,
|
||||
data_type,
|
||||
character_maximum_length,
|
||||
is_nullable
|
||||
FROM information_schema.columns
|
||||
WHERE table_name = 'cli_surgery'
|
||||
AND column_name LIKE '%name%'
|
||||
ORDER BY column_name;
|
||||
Reference in New Issue
Block a user