Skip to content

Commit

Permalink
Update src/grammar/query.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Kieran Kaelin <kieran_kaelin@yahoo.co.uk>
  • Loading branch information
if-loop69420 and KieranKaelin authored Aug 21, 2024
1 parent c44e55c commit 46bb4ec
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/grammar/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1456,18 +1456,8 @@ Root@0..61
in_customer_id NUMBER
)
IS
r_contact contacts%ROWTYPE;
BEGIN
-- get contact based on customer id
SELECT *
INTO r_contact
FROM contacts
WHERE customer_id = p_customer_id;
-- print out contact's information
dbms_output.put_line( r_contact.first_name || ' ' ||
r_contact.last_name || '<' || r_contact.email ||'>' );
NULL;
END;
SELECT * from employee;",
parse_cte,
Expand Down

0 comments on commit 46bb4ec

Please sign in to comment.