DECLARE
tantou_count NUMBER(7);
BEGIN
select count(*) into tantou_count from "K受担当D";
DBMS_OUTPUT.PUT_LINE(tantou_count);
EXCEPTION
WHEN too_many_rows THEN null;
END;
/
日本語のテーブル名は意外とわかりやすいけど、文字化けで苦しむので、
やっぱりなくしたほうがいい。
Go to list of users who liked
More than 5 years have passed since last update.
DECLARE
tantou_count NUMBER(7);
BEGIN
select count(*) into tantou_count from "K受担当D";
DBMS_OUTPUT.PUT_LINE(tantou_count);
EXCEPTION
WHEN too_many_rows THEN null;
END;
/
日本語のテーブル名は意外とわかりやすいけど、文字化けで苦しむので、
やっぱりなくしたほうがいい。
Register as a new user and use Qiita more conveniently
Go to list of users who liked