|
- SELECT <font color="#ff0000">a.drugid,a.drugname,to_char(a.spec),a.enterprisename,</font>
- CASE
- WHEN Length(<font color="#ff0000">a.feature</font>)> 2000 THEN to_char(SUBSTR(<font color="#ff0000">a.feature</font>, 1, 2000))
- ELSE to_char(<font color="#ff0000">a.feature</font>)
- END AS 适应症
- FROM
- <font color="#ff0000">drugspec.instructions_list</font> a;
复制代码
|
|