-Dr. Paul Dorsey, President, Dulcian, Inc., Oracle Magazine PL/SQL Developer of the Year 2007, and President Emeritus, New York Oracle Users Group "This is a fascinating guide into the world of Oracle SQL with an abundance of well-collected... (展开全部) 我来说两句 短评 ··· 热门...
Oracle SQL by Example 《Oracle SQL by Example》是Prentice Hall Ptr出版的图书,作者是Rischert, Alice
Oracle PLSQL by Example Introduction Oracle PL/SQL is a procedural language used to create applications within an Oracle database. It is a popular programming language among database developers due to its wide range of features and capabilities. This article will provide an overview of Oracle PL...
Oracle PL/SQL by Example 《Oracle PL/SQL by Example》是Prentice Hall出版的图书,作者是Benjamin Rosenzweig,Elena Rakhimov
Oracle Pl/SQL by Example 《Oracle Pl/SQL by Example》是Prentice Hall Ptr出版的图书,作者是Rosenzweig, Benjamin, Silvestrova, Elena
This integrated learning solution teaches all the Oracle PL/SQL skills you need, hands-on, through real-world labs, extensive examples, exercises, and projects! Completely updated for Oracle 11g, Oracle PL/SQL by Example, Fourth Edition covers all the fundamentals, from PL/SQL syntax and program...
Oracle SQL By Example, 4th Edition Rosenzweig, Benjamin; Rakhimov, Elena Silvestrova A Rischert 被引量: 4发表: 2010年 Oracle PL/SQL实例精解 : Oracle PL/SQL by example Rosenzweig, Benjamin; Rakhimov, Elena Silvestrova 罗森茨韦克,拉希莫夫龚波,徐雅丽 - Oracle PL/SQL实例精解 : Oracle PL/...
出版社:Addison Wesley Longman 页数:0 ISBN:9780132367639 豆瓣评分 目前无人评价 评价: 写笔记 写书评 加入购书单 分享到 推荐 + 加入购书单 谁读这本书?··· 二手市场· ··· 在豆瓣转让手里有一本闲着? 订阅关于Oracle SQL by Example & Oracle 10g Pkg的评论: feed: rss ...
CREATE TABLE ot.persons( person_id NUMBER GENERATED BY DEFAULT AS IDENTITY, first_name VARCHAR2(50) NOT NULL, last_name VARCHAR2(50) NOT NULL, PRIMARY KEY(person_id) );Code language: SQL (Structured Query Language) (sql) In this example, the persons table has three columns: person_id,...