실현 2차원 표
1922 단어 실현
create or replace function getGoodsMsgForProtocol( str_in in varchar2,str_classId in varchar2)--
return varchar2
is
str_list varchar2(4000) default 'null';--
str_int number(2) default 0;
begin
for x in ( select goods.goodsname,goods.specs from t_Goods goods
where goods.id=str_in) loop
str_list :=x.goodsname||'='||x.specs||' ';
str_int:=+1;
end loop;
if str_list='null' and str_int=0 then
for x in ( select goodshistory.goodsname,goodshistory.specs from t_Goodshistory goodshistory
where goodshistory.goodsid=str_in) loop
str_list :=x.goodsname||'='||x.specs||' ';
str_int:=+1;
end loop;
end if;
if str_list='null' and str_int=0 then
for x in ( select ac.acname,ac.specs from t_accessory ac
where ac.id=str_in) loop
str_list :=x.acname||'='||x.specs||' ';
str_int:=+1;
end loop;
end if;
if str_list='null' and str_int=0 then
for x in ( select ach.acname,ach.specs from t_accessoryhistory ach
where ach.id=str_in) loop
str_list :=x.acname||'='||x.specs||' ';
str_int:=+1;
end loop;
end if;
if str_list='null' and str_int=0 then
for x in ( select gs.goodsclassname from t_goodsclass gs
where gs.id=str_classId) loop
str_list :=x.goodsclassname||'='||' ';
str_int:=+1;
end loop;
end if;
return str_list;
end;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ReactRouter의 구현 방법즉, Hash 및 그 후의 문자는 서버에 전송되어 자원이나 데이터의 요청을 하지 않습니다.브라우저 동작을 지도하는 데 사용되며 서버에 효과가 없기 때문에 변경 URL 은 페이지를 다시 불러오지 않습니다.HTTP의 역...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.