Using Complex U2 Conditions in Informer

Slides:



Advertisements
Similar presentations
Charlie Haffey Norwood Public Schools. Organized information storage Software- sophisticated Excel- pretty good, basic level.
Advertisements

Using the Set Operators
MULTIPLE-TABLE QUERIES
Informer Reporting I need a report that…
Lesson 1.3 Unit 1, Lesson 3. Set:A collection of distinct objects Elements:All of the objects that make up a set.
UniData to SQL Conversion Don’t lose your Informer investment…
Relational Algebra, Join and QBE Yong Choi School of Business CSUB, Bakersfield.
Concepts of Database Management Seventh Edition
Your name here The lecture notes are based on using Microsoft Access interactively as part of the lecture.
Designing a Database Unleashing the Power of Relational Database Design.
9 Copyright © 2012, Oracle and/or its affiliates. All rights reserved. Using the Set Operators Assist. Prof. Pongpisit Wuttidittachotti, Ph.D. Faculty.
Copyright © 2010 Pearson Education, Inc. All rights reserved Sec Set Operations and Compound Inequalities.
Relational Algebra. Manipulating Databases To access information in a database we use a query Ex: How many customers have the first name = `John’? Good.
Database – Part 2a Dr. V.T. Raja Oregon State University.
Objectives After completing this lesson, you should be able to do the following: Define subqueries Describe the types of problems that the subqueries.
Concepts of Database Management, Fifth Edition
CSC 240 (Blum)1 Joins. CSC 240 (Blum)2 Relational algebra Recall relational algebra was the study of actions that are performed on one or more tables.
Audio Dial In: or CRM to RM Visual CRM to MS-CRM 2007 Visual User Group Nov 21 st 2007.
1.3 The Intersection Point of Lines System of Equation A system of two equations in two variables looks like: – Notice, these are both lines. Linear Systems.
Chapter 9 Joining Data from Multiple Tables
Conjunction A conjunction is a compound statement formed by combining two simple sentences using the word “AND”. A conjunction is only true when both.
1.6 Solving Compound Inequalities Understanding that conjunctive inequalities take intersections of intervals and disjunctive inequalities take unions.
Compound Inequalities “And” & “Or” Graphing Solutions.
C I AC I AD U OD U O disjunction conjunction union intersection orand U U Notes 4.2 Compound Inequalities unite, combinewhere they cross, what they share.
Chapter 4 Multiple-Table Queries
11/07/2003Akbar Mokhtarani (LBNL)1 Normalization of Relational Tables Akbar Mokhtarani LBNL (HENPC group) November 7, 2003.
1 Multiple Table Queries. 2 Objectives  Retrieve data from more than one table by joining tables  Using IN and EXISTS to query multiple tables  Nested.
15 Copyright © Oracle Corporation, All rights reserved. Using SET Operators.
Compass ® Reports Customized List Report KDE:OAA:pp: 9/5/
1.5 Solving Inequalities Honors Algebra II. Properties of Inequalities, page 34 Property Let a, b, and c represent real numbers.
CHAPTER 1 – EQUATIONS AND INEQUALITIES 1.6 – SOLVING COMPOUND AND ABSOLUTE VALUE INEQUALITIES Unit 1 – First-Degree Equations and Inequalities.
Copyright © 2004, Oracle. All rights reserved. Using the Set Operators.
SqlExam1Review.ppt EXAM - 1. SQL stands for -- Structured Query Language Putting a manual database on a computer ensures? Data is more current Data is.
1 2 Concepts of Database Management, 4 th Edition, Pratt & Adamski Chapter 2 The Relational Model 1: Introduction, QBE, and Relational Algebra.
Using SET Operators Fresher Learning Program January, 2012.
* Database is a group of related objects * Objects can be Tables, Forms, Queries or Reports * All data reside in Tables * A Row in a Table is a record.
Chapter 2: Equations and Inequalities Section 2.3/2.4: Conjunctions and Disjunctions and Solving Compound Sentences with Inequalities.
In this session, you will learn to: Query data by using joins Query data by using subqueries Objectives.
Solving Compound Inequalities
Warm Up Solve each inequality. 1. x + 3 ≤ x ≤ 7 23 < –2x + 3
MySQL Tutorial. Databases A database is a container that groups together a series of tables within a single structure Each database can contain 1 or more.
Informer 5 Teams and Security Collaborate on, Secure, and Share Content PRESENTER: Tim Nicholson| Director, Informer Customer Services| April 21, 2017.
Lesson 2-6: Compound Inequalities
More SQL: Complex Queries,
Chapter 6: Set Operators
Chapter 2: Relational Model
Warm-Up Graph Solve for y: Graph line #2.
FUNDAMENTAL ALGEBRA Week 11.
Quiz Questions Q.1 An entity set that does not have sufficient attributes to form a primary key is a (A) strong entity set. (B) weak entity set. (C) simple.
Using the Set Operators
Complex Number Field Properties
Theory behind the relational engine
Theory behind the relational engine
Using the Set Operators
Welcome! Agenda Warm Up Algebraic Properties Notes
Community Focusing on Direct Certification
Joins CSC 240 (Blum).
MongoDB Read/Write.
CMPT 354: Database System I
Inductive Reasoning and Conjecture, and Logic
Q Student Connection Registration
Custom Functions in Power Query
Aim: How did Dalton view the atom?
Algebra 1B – Name: _________________________
February 11-13, 2019 Raleigh, NC.
SQL set operators and modifiers.
Using the Set Operators
Section 5.4 Day 1 Algebra 1.
Microsoft Access Date.
Solving Inequalities Lesson 1-5 Part 2
Presentation transcript:

Using Complex U2 Conditions in Informer PRESENTER: Tim Nicholson| Director, Informer Customer Services| April 25, 2017

Agenda Order of Operations Conjunctions Compound Conditions Using Select Return List Algebra Associated Multivalues Q&A

Order of Operations Order matters? Yes and no. Top-down Parenthetical grouping (Compound Condition) Most restrictive condition first Avoid I-Descriptors/Computed Columns at top

Conjunctions AND = all conditions have to be true OR = only one condition has to be true NONE = none of the conditions are true

AND

OR

NONE

Compound Conditions Switch conjunction Parenthetical grouping – a and (b or c)

SELECT/RETURNING Same as SELECT…SAVING UNIQUE… Return distinct list of values from selected records Used to get @ID’s “Unique-ify” detailed lists

SELECT/RETURNING PERSON @ID … ORDERS @ID PERSON.NO …

List Algebra Set Operations using multiple SELECT/RETURNING conditions Conjunction determines operator List A List B

List Algebra - Intersect Use AND conjunction Values that only exist in both lists This Year Last Year

List Algebra - Union Use OR conjunction Combines Lists This Year Last Year

List Algebra - Difference Use AND with NONE Compound Condition Values that exist in one list but not the other This Year Last Year

Multivalues Field containing multiple values Limiter: Any, Every, No, When

Limiters: Any Any of the values match the condition INTEREST HEA WWW MED PARA MRNI

Limiters: Every Every value must match the condition INTEREST HEA WWW MED PARA MRNI

Limiters: No None of the values match the condition INTEREST HEA WWW PARA MRNI

Associated Multi-Values Two or more related multivalue fields Ex: Status and Status Date Use WHEN delimiter for each condition

Associated Multivalues

Thank you! Any questions?