📄 oracle_10g_examples.sql
字号:
-- This script Will only run if you are using Oracle Database 10g
-- or higher
-- This script does the following:
-- Connects as the store user and creates items for the
-- Oracle Database 10g examples featured in Chapter 1
CONNECT store/store_password;
-- BINARY_FLOAT and BINARY_DOUBLE example
CREATE TABLE binary_test (
bin_float BINARY_FLOAT,
bin_double BINARY_DOUBLE
);
INSERT INTO binary_test (
bin_float, bin_double
) VALUES (
39.5f, 15.7d
);
INSERT INTO binary_test (
bin_float, bin_double
) VALUES (
BINARY_FLOAT_INFINITY, BINARY_DOUBLE_INFINITY
);
-- commit the transaction
COMMIT;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -