表是否存在: select count(*) from user_tables where table_name = #{tablename} 包含某个字段的表 select * from user_tab_columns where UPPER(column_name)='CREATE_TIME' 特定表是否包含字段 select * from user_tab_columns where UPPER(column_name)='CREATE_TIME' AND TABLE_NAME = 'S
1.获取数据库中的表 select name from sysobjects where type='U' 2.获取表字段(此处是Route表) Select name from syscolumns Where ID=OBJECT_ID('Route') 3.获取表中字段的描述 SELECT value FROM ::fn_listextendedproperty (NULL, 'user', 'dbo', 'table', 'Route', 'column', default) 4.获取表的
@JsonIgnore的使用: 实体类中加@JsonIgnore注解 package com.baidu.entity; import com.fasterxml.jackson.annotation.JsonIgnore; import org.springframework.data.annotation.Transient; import java.io.Serializable; public class User implements Serializable{ private sta