jaytee on 09/17/08
Last Edited at 09/17/08 03:38pm
DECLARE number1 NUMBER(2); number2 NUMBER(2) := 17; text1 VARCHAR2(12) := 'Hello world'; text2 DATE := SYSDATE; -- current date and timeBEGIN SELECT street_number INTO number1 FROM address WHERE name = 'Smith';END;
Report this snippet Tweet
Comment:
You need to login to post a comment.