sql 語句查詢字段列表時的對映問題

2021-08-30 22:22:46 字數 1998 閱讀 7860

我寫了乙個ibatis select 語句如下

select

$fields$

from

t_company_info tci

]]>

tci.seq_tci=#seqtci#

tci.name_ch=#namech#

tci.name_en=#nameen#

tci.logo_photo=#logophoto#

tci.introduction_ch=#introductionch#

tci.introduction_en=#introductionen#

tci.establish_date=#establishdate#

tci.caddress=#caddress#

tci.eaddress=#eaddress#

tci.telephone=#telephone#

tci.fax=#fax#

tci.web_address=#webaddress#

tci.email=#email#

tci.cp_fzr=#cpfzr#

tci.fzr_photo=#fzrphoto#

tci.fzr_tele=#fzrtele#

tci.zjl_name=#zjlname#

tci.zjl_tele=#zjltele#

tci.cw_name=#cwname#

tci.cw_tele=#cwtele#

tci.wm_name=#wmname#

tci.wm_tele=#wmtele#

tci.company_type=#companytype#

tci.has_jckjy_power=#hasjckjypower#

tci.has_jm_license=#hasjmlicense#

tci.has_dw_license=#hasdwlicense#

tci.is_high_tech_cp=#ishightechcp#

tci.wh_liqu_bank=#whliqubank#

tci.credit_status=#creditstatus#

tci.iso_info=#isoinfo#

tci.prize_info=#prizeinfo#

tci.reg_money=#regmoney#

tci.product_money=#productmoney#

tci.tax_money=#taxmoney#

tci.jntz=#jntz#

tci.jwtz=#jwtz#

tci.rz_type=#rztype#

tci.dept_names=#deptnames#

tci.prod_area_type=#prodareatype#

tci.prod_area=#prodarea#

tci.office_area_type=#officeareatype#

tci.office_area=#officearea#

tci.fzxz=#fzxz#

tci.fzyj=#fzyj#

tci.has_oa=#hasoa#

tci.has_web=#haswb#

tci.is_use_ep=#isuseep#

tci.hg_code=#hgcode#

tci.cp_zzjgdm=#cpzzjgdm#

tci.cp_zch=#cpzch#

tci.state='1'

order by tci.seq_tci limit #start#,#pagesize#

[color=red]其中的$fields$ 是動態的與使用者許可權有關,查詢在頁面顯示時,不是報錯就是要顯示的列沒有查詢出來。[/color]

剛開始以為是快取有問題,清空快取後還是不行,後來在書上找了下原來是對映問題

在select 中加上[color=red]remapresults="true" [/color]就可以了

SQL語句之查詢字段注釋(備註)

select b.name as column name from sys.tables a inner join sys.columns b on b.object id a.object id left join sys.extended properties c on c.major id b...

sql查詢字段連線

我有乙個需求是把2個字段拼接成乙個字段,如 user user id,user code,user name 查詢結果是 user code user name 在寫sql語句時用連線符 select user code user name codename from user 上面這種寫法是ora...

MSSQL中如何用SQL語句查詢字段型別

最佳答案 這個肯定得從系統表中查詢了。select a.name as column b.name as typefrom syscolumns a,systypes bwhere a.id object id 表名 and a.xtype b.xtype把 表名 替換成你要檢視字段型別的表名,比如...