内容文稿sap培训全ibm chapterdata with select statements_第1页
内容文稿sap培训全ibm chapterdata with select statements_第2页
内容文稿sap培训全ibm chapterdata with select statements_第3页
内容文稿sap培训全ibm chapterdata with select statements_第4页
内容文稿sap培训全ibm chapterdata with select statements_第5页
已阅读5页,还剩9页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、Retrieving Data with the SELECT Statement | 3.05March-2005Retrieving Data with SELECT Statements2March-2005Retrieving Data with the SELECT Statement | 3.05ObjectivesThe participants will be able to: Retrieve information from the database using Open SQL. Create basic Select statements for use in ABAP

2、 Code. Describe the system field SY-SUBRC and properly use it in an ABAP Program. 3March-2005Retrieving Data with the SELECT Statement | 3.05DBRetrieving Information From the DatabaseDataJohn SmithMary StilesStructured Query Language (SQL)-Data Manipulation Language (DML)Data Definition Language (DD

3、L)Data Control Language (DCL)4March-2005Retrieving Data with the SELECT Statement | 3.05Open SQLPortable across various databasesOpen SQL - a subset of standard SQL5March-2005Retrieving Data with the SELECT Statement | 3.05The Basic SELECT StatementDBMary StilesJohn SmithWork AreaSELECT *FROM .ENDSE

4、LECT.6March-2005Retrieving Data with the SELECT Statement | 3.05Example Using the SELECT StatementTABLES: KNA1.SELECT *FROM KNA1.WRITE: / KNA1-KUNNR, KNA1-NAME1.ENDSELECT.7March-2005Retrieving Data with the SELECT Statement | 3.05The SELECT Statement with a WHERE ClauseTABLES: KNA1.SELECT *FROM KNA1

5、WHERE KTOKD = 0001.WRITE: / KNA1-KUNNR, KNA1-NAME1.ENDSELECT.8March-2005Retrieving Data with the SELECT Statement | 3.05SY-SUBRCTABLES: KNA1.SELECT *FROM KNA1WHERE KTOKD = 0001.WRITE: / KNA1-KUNNR, KNA1-NAME1.ENDSELECT.IF SY-SUBRC 0.WRITE: / No records found.ENDIF.9March-2005Retrieving Data with the

6、 SELECT Statement | 3.05The INTO ClauseTABLES: KNA1.SELECT KUNNR NAME1FROM KNA1INTO (KNA1-KUNNR, KNA1-NAME1).WRITE : / KNA1-KUNNR, KNA1-NAME1.ENDSELECT.IF SY-SUBRC 0.WRITE: / No records found.ENDIF.10March-2005Retrieving Data with the SELECT Statement | 3.05INTO CORRESPONDING-FIELDSTABLES: KNA1.SELE

7、CT KUNNR NAME1FROM KNA1INTO CORRESPONDING-FIELDS OF KNA1.WRITE : / KNA1-KUNNR, KNA1-NAME1.ENDSELECT.IF SY-SUBRC 0.WRITE: / No records found. ENDIF.11March-2005Retrieving Data with the SELECT Statement | 3.05DemonstrationSelection of data from a database table, checking sy-subrc and displaying the va

8、lues in a report.12March-2005Retrieving Data with the SELECT Statement | 3.05PracticeSelection of data from a database table, checking sy-subrc and displaying the values in a report.13March-2005Retrieving Data with the SELECT Statement | 3.05SummarySQL has three main components:Data Manipulation Lan

9、guage (DML):Data Definition Language (DDL):Data Control Language (DCL):The DML provides the four basic data operations: Select (retrieve)InsertUpdateDeleteOpen SQL is a subset of standard SQL with a specific syntax recognised by ABAP.14March-2005Retrieving Data with the SELECT Statement | 3.05QuestionsWhat is

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论