inleft
2022-02-09 9bcb19959eeb9da9bde2561e7278f6d0a55eb151
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="vip.xiaonuo.generate.modular.mapper.CodeGenerateMapper">
 
    <resultMap id="informationResult" type="vip.xiaonuo.generate.modular.result.InformationResult">
        <result column="table_name" property="tableName" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
        <result column="table_comment" property="tableComment" />
    </resultMap>
 
    <resultMap id="inforMationColumnsResult" type="vip.xiaonuo.generate.modular.result.InforMationColumnsResult">
        <result column="column_name" property="columnName" />
        <result column="data_type" property="dataType" />
        <result column="column_comment" property="columnComment" />
        <result column="column_key" property="columnKey" />
    </resultMap>
 
    <!-- 查询指定库中所有表 mysql -->
    <select id="selectInformationTable" parameterType="String" resultMap="informationResult" databaseId = "mysql">
        select table_name,create_time,update_time,table_comment
        from information_schema.tables
        where
            table_schema = '${dbName}'
    </select>
 
    <!-- 查询指定库中所有表 oracle -->
    <select id="selectInformationTable" parameterType="String" resultMap="informationResult" databaseId = "oracle">
        select table_name, comments as table_comment
        from user_tab_comments
    </select>
 
    <!-- 查询指定库中所有表 mssql -->
    <select id="selectInformationTable" parameterType="String" resultMap="informationResult" databaseId = "mssql">
        SELECT DISTINCT
            d.name as table_name,
            f.value as table_comment
        FROM
            syscolumns a
                LEFT JOIN systypes b ON a.xusertype= b.xusertype
                INNER JOIN sysobjects d ON a.id= d.id
                AND d.xtype= 'U'
                AND d.name != 'dtproperties'
                LEFT JOIN syscomments e ON a.cdefault= e.id
                LEFT JOIN sys.extended_properties g ON a.id= G.major_id
                AND a.colid= g.minor_id
                LEFT JOIN sys.extended_properties f ON d.id= f.major_id
                AND f.minor_id= 0
    </select>
 
    <!-- 查询指定库中所有表 pgsql -->
    <select id="selectInformationTable" parameterType="String" resultMap="informationResult" databaseId = "pgsql">
        SELECT
            relname AS TABLE_NAME,
            col_description ( C.oid, 0 ) AS TABLE_COMMENT
        FROM
            pg_class C
        WHERE
            relkind = 'r'
          AND relname NOT LIKE'pg_%'
          AND relname NOT LIKE'sql_%'
        ORDER BY
            relname
    </select>
 
    <!-- 查询指定库中所有表 达梦数据库 -->
    <select id="selectInformationTable" parameterType="String" resultMap="informationResult" databaseId = "dm">
        select table_name, comments as table_comment
        from user_tab_comments
    </select>
 
    <!-- 查询指定库中所有表 人大金仓数据库 -->
    <select id="selectInformationTable" parameterType="String" resultMap="informationResult" databaseId = "kingbasees">
        select table_name, comments as table_comment
        from user_tab_comments
    </select>
 
    <!-- 查询指定表中所有字段 mysql -->
    <select id="selectInformationColumns" parameterType="String" resultMap="inforMationColumnsResult" databaseId = "mysql">
        select
            column_name,data_type,column_comment,column_key
        from information_schema.columns
        where
            table_schema = '${dbName}' and table_name = '${tableName}';
    </select>
 
    <!-- 查询指定表中所有字段 oracle -->
    <select id="selectInformationColumns" parameterType="String" resultMap="inforMationColumnsResult" databaseId = "oracle">
        select
            a.column_name as column_name,
            a.data_type as data_type,
            b.comments as column_comment,
            case
                when c.position>0 then 'PRI'
                else ''
                end column_key
        from
                (select * from user_tab_columns where table_name='${tableName}') a
                    left join
                (select * from user_col_comments where table_name='${tableName}') b
                on a.column_name=b.column_name
                    left join
            (
                select table_name,column_name,position from user_cons_columns
                where
                    table_name='${tableName}'
                  and constraint_name=(select constraint_name
                                       from
                                           user_constraints where table_name='${tableName}' and constraint_type='P')
                  and owner='${dbName}'
            ) c
            on a.column_name=c.column_name
        order by a.column_id
    </select>
 
    <!-- 查询指定表中所有字段 mssql -->
    <select id="selectInformationColumns" parameterType="String" resultMap="inforMationColumnsResult" databaseId = "mssql">
        SELECT
            C.name AS column_name,
            T.name AS data_type,
            isnull( ETP.value, '' ) AS column_comment,
            CASE
 
                WHEN EXISTS (
                        SELECT
                            1
                        FROM
                            sysobjects
                        WHERE
                            xtype = 'PK'
                          AND parent_obj = c.id
                          AND name IN ( SELECT name FROM sysindexes WHERE indid IN ( SELECT indid FROM sysindexkeys WHERE id = c.id AND colid = c.colid ) )
                    ) THEN
                    'PRI' ELSE ''
                END AS column_key
        FROM
            syscolumns C
                INNER JOIN systypes T ON C.xusertype = T.xusertype
                LEFT JOIN sys.extended_properties ETP ON ETP.major_id = c.id
                AND ETP.minor_id = C.colid
                AND ETP.name = 'MS_Description'
                LEFT JOIN syscomments CM ON C.cdefault= CM.id
        WHERE
            C.id = object_id( '${tableName}' )
    </select>
 
    <!-- 查询指定表中所有字段 pgsql -->
    <select id="selectInformationColumns" parameterType="String" resultMap="inforMationColumnsResult" databaseId = "pgsql">
        SELECT
            t1.*,
            COALESCE(t2.pk_name, '') AS column_key
        FROM
            (
                SELECT A
                           .attname AS COLUMN_NAME,
                       pg_type.typname AS data_type,
                       col_description ( A.attrelid, A.attnum ) AS column_comment
                FROM
                    pg_class AS C,
                    pg_attribute
                        AS A INNER JOIN pg_type ON pg_type.oid = A.atttypid
                WHERE
                    C.relname = '${tableName}'
                  AND A.attrelid = C.oid
                  AND A.attnum > 0
            ) t1
                LEFT JOIN (
                SELECT
                    pg_attribute.attname AS COLUMN_NAME,
                    CASE WHEN pg_constraint.conname ISNULL THEN '' ELSE 'PRI' END AS pk_name
                FROM
                    pg_constraint
                        INNER JOIN pg_class ON pg_constraint.conrelid = pg_class.oid
                        INNER JOIN pg_attribute ON pg_attribute.attrelid = pg_class.oid
                        AND pg_attribute.attnum = pg_constraint.conkey [ 1 ]
                        INNER JOIN pg_type ON pg_type.oid = pg_attribute.atttypid
                WHERE
                    pg_class.relname = '${tableName}'
                  AND pg_constraint.contype = 'p'
            ) t2 ON t1.COLUMN_NAME = t2.COLUMN_NAME
    </select>
 
    <!-- 查询指定表中所有字段 达梦数据库 -->
    <select id="selectInformationColumns" parameterType="String" resultMap="inforMationColumnsResult" databaseId = "dm">
        select
            a.column_name as column_name,
            a.data_type as data_type,
            b.comments as column_comment,
            case
                when c.position>0 then 'PRI'
                else ''
                end column_key
        from
                (select * from user_tab_columns where table_name='${tableName}') a
                    left join
                (select * from user_col_comments where table_name='${tableName}') b
                on a.column_name=b.column_name
                    left join
            (
                select table_name,column_name,position from user_cons_columns
                where
                    table_name='${tableName}'
                  and constraint_name=(select constraint_name
                                       from
                                           user_constraints where table_name='${tableName}' and constraint_type='P')
                  and owner='${dbName}'
            ) c
            on a.column_name=c.column_name
        order by a.column_id
    </select>
 
    <!-- 查询指定表中所有字段 人大金仓数据库 -->
    <select id="selectInformationColumns" parameterType="String" resultMap="inforMationColumnsResult" databaseId = "dm">
        select
            a.column_name as column_name,
            a.data_type as data_type,
            b.comments as column_comment,
            case
                when c.position>0 then 'PRI'
                else ''
                end column_key
        from
                (select * from user_tab_columns where table_name='${tableName}') a
                    left join
                (select * from user_col_comments where table_name='${tableName}') b
                on a.column_name=b.column_name
                    left join
            (
                select table_name,column_name,position from user_cons_columns
                where
                    table_name='${tableName}'
                  and constraint_name=(select constraint_name
                                       from
                                           user_constraints where table_name='${tableName}' and constraint_type='P')
                  and owner='${dbName}'
            ) c
            on a.column_name=c.column_name
        order by a.column_id
    </select>
 
</mapper>