代码搜索:PLSQL
找到约 265 项符合「PLSQL」的源代码
代码结果 265
www.eeworm.com/read/438748/7727531
sql 54004.sql
-- -------------------------------------------------
-- Filename: 54004.sql
--
-- Script file for PL/SQL 101 for Oracle 10g
-- Chapter 04
-- Created by Christopher Allen
-- Copyright Oracle Pres
www.eeworm.com/read/438748/7727533
sql 54009.sql
-- -------------------------------------------------
-- Filename: 54009.sql
--
-- Script file for PL/SQL 101 for Oracle 10g
-- Chapter 09
-- Created by Christopher Allen
-- Copyright Oracle Pres
www.eeworm.com/read/241363/13151634
sql 54004.sql
-- -------------------------------------------------
-- Filename: 54004.sql
--
-- Script file for PL/SQL 101 for Oracle 10g
-- Chapter 04
-- Created by Christopher Allen
-- Copyright Oracle Pres
www.eeworm.com/read/241363/13151641
sql 54009.sql
-- -------------------------------------------------
-- Filename: 54009.sql
--
-- Script file for PL/SQL 101 for Oracle 10g
-- Chapter 09
-- Created by Christopher Allen
-- Copyright Oracle Pres
www.eeworm.com/read/161040/5563792
txt upper_lower_initcap.txt
SELECT UPPER(product_name) FROM plsql101_product;
SELECT LOWER(product_name) FROM plsql101_product;
SELECT INITCAP(product_name) FROM plsql101_product;
SELECT INITCAP('this TEXT hAd UNpredictABLE
www.eeworm.com/read/161040/5563795
txt sysdate_insert_select.txt
SELECT * FROM plsql101_purchase
WHERE purchase_date BETWEEN (SYSDATE-30) AND SYSDATE;
DELETE FROM plsql101_purchase
WHERE SALESPERSON = 'SH';
www.eeworm.com/read/161040/5563810
txt sm_script_2.txt
edit d:\plsql101_test5.sql
/* Insert the following commands into the script file
SET ECHO OFF
SET VERIFY OFF
@d:\sm_emp_var1
@d:\plsql101_test3
@d:\plsql101_test4
*/
@d:\plsql101_test5
www.eeworm.com/read/161040/5563881
txt field_date.txt
SELECT * FROM plsql101_product
WHERE last_stock_date = '15-1月-03';
SELECT * FROM plsql101_product
WHERE last_stock_date = '15-1月-2003';
SELECT * FROM plsql101_product
WHERE last_stock_date