Declarar variáveis ​​de ligação no SQL * Plus

Eu estou usando o SQL * Plus. Quando estou usando a consulta abaixo, está dando erro

Error report:
ORA-06550: line 4, column 1:
PLS-00428: an INTO clause is expected in this SELECT statement

Inquerir

declare 
id varchar2(80) :='test123'; 
begin
select test_quote,test_id from order_link where id = 'test123';
end;

questionAnswers(2)

yourAnswerToTheQuestion