SQL. upiti/ selekcija

Size: px
Start display at page:

Download "SQL. upiti/ selekcija"

Transcription

1 SQL upiti/ selekcija

2 Ponavljanje što je baza podataka, a što SUBP? što je entitet, a što atribut? kako izgleda relacijski model baze podataka? koje vrste veza postoje? koji su osnovni tipovi podataka u Accessu? što je SQL? kako glase naredbe za kreiranje baze i tablica u SQL-u?

3 SELECT naredba SELECT lista FROM tablice WHERE condition GROUP BY group_list HAVING condition ORDER BY column_name [ASC DESC] INTO TEMP table_name

4 kreirajmo tablicu prijatelj: CREATE TABLE prijatelj ( IDprijatelja INTEGER NOT NULL, ime VARCHAR(40) NOT NULL, prezime VARCHAR(40) NOT NULL, adresa VARCHAR(40), mobitel VARCHAR(10), prosjek INTEGER, VARCHAR(50), rodjendan DATE, najdraza_pjesma VARCHAR(40), najdraza_boja VARCHAR(40), najdraze_jelo VARCHAR(40), najdrazi_film VARCHAR(40) PRIMARY KEY (IDprijatelja) );

5 selektiramo sve podatke iz tablice prijatelj čije ime je Frendić: SELECT * FROM prijatelj WHERE ime= Frendić ; selektiramo ime, adresu iz tablice prijatelj gdje ime počinje na slovo A ili B ili na Frend SELECT ime, adresa FROM prijatelj WHERE ime LIKE (A B)% OR ime LIKE Frend% ;

6 selektiramo ime, iz tablice prijatelj za prijatelje mlañe od SELECT ime, FROM prijatelj WHERE rodjendan > ; selektiramo sve podatke o prijateljima koji se zovu Ivan ili Marko ili Luka SELECT * FROM prijatelj WHERE ime IN ( Ivan, Marko, Luka );

7 GROUP BY grupiranje rezultata prema nekom svojstvu svojstvo prema kojem se grupira mora biti sadržano u ispisu rezultata tj. u SELECT djelu SELECT ime, adresa, rodjendan FROM prijatelj GROUP BY rodjendan

8 ORDER BY definira se poredak ispisa podataka. Struktura je: ORDER BY <atribut 1>, <atribut 2>,... uzlazno ASC, silazno DESC. ORDER BY ime; ORDER BY ime,godina DESC; ORDER BY godina DESC, ime ASC;

9 za vježbu: 1. ispišite sve prijatelje koji su roñeni nakon , grupiraj prema imenu 2. ispiši ime,adresu i prijatelja kojima je najdraža boja plava, crvena ili žuta, poredaj prema imenu uzlazno 3. ispiši ime prijatelja čija adresa sadržava Velika Gorica grupiraj i poredaj silazno

10 1. select * from prijatelj where rodjendan> group by ime; 2. select ime, adresa, from prijatelj where najdraza boja IN ( crvena, plava, žuta ) order by ime ASC; 3. select ime from prijatelj where adresa LIKE %Velika Gorica% group by ime order by ime DESC;

11 Agregatne funkcije count(*) broj n-torki count (distinct x) broj n-torki s različitim vrijednostima x-a SUM (x) - suma vrijednosti od x-a AVG (x) prosječna vrijednost od x-a MAX (x) maksimum od x-a MIN (x) minimum od x-a u svim funkcijama DISTINCT označava različite vrijednosti x-a

12 Agregatne funkcije mogu se koristiti u SELECT dijelu, ali ne i u WHERE dijelu SELECT naredbe SELECT COUNT(*), COUNT (DISTINCT ime) FROM prijatelj

13 ZADATAK ispiši broj različitih rodjendana prijatelja ispiši sumu prosjeka prijatelja kojima je najdraži film Psycho ispiši prosjek različitih prosjeka prijatelja ispiši maksimalni prosjek prijatelja

14 Having postavljanje uvjeta nad grupom zapisa smiju se koristiti samo izrazi koji se nalaze u GROUP BY i agregatne funkcije select ime, count(*) from prijatelj where prosjek > 4.0 group by ime having count(*) > 2

15 Spajanje tablica ili JOIN podaci se iz više tablica izabiru tako da se u svakom upitu ili selekciji postavlja pravilo spajanja: tablica1.primarni ključ=tablica2.strani ključ

16 Zadatak: ispisati imena rase sa planeta Mars select rasa.naziv from rasa, planet where planet.naziv= Mars AND planet.planetid=rasa.planetid; ispisati imena planeta iz Sunčevog sustava select planet.naziv from planet,sustav where sustav.naziv= Sunčev sustav AND sustav.sustavid=planet.sustavid;

17 ispisati imena rasa sa svih planeta u Sunčevom sustavu select rasa.naziv from rasa, planet,sustav where sustav.naziv= Sunčev sustav AND rasa.planetid=planet.planetid AND planet.sustavid=sustav.sustavid;

Postojeći Mail Account u Outlook Expressu (podešavanje promjena):

Postojeći Mail Account u Outlook Expressu (podešavanje promjena): Outlook Express 5 Postojeći Mail Account u Outlook Expressu (podešavanje promjena): Microsoft Outlook Express je dio Microsoft Internet Explorer. izaberite: Ako Outlook, kada dva puta pritisnete na gornju

More information

Podešavanje e-mail klijenata

Podešavanje e-mail klijenata Podešavanje e-mail klijenata - Mozilla Thunderbird - Microsoft Outlook U daljem tekstu nalaze se detaljna uputstva kako podesiti nekoliko najčešće korišćenih Email programa za domenske email naloge. Pre

More information

Uputstvo za povezivanje na IPv6 mrežu

Uputstvo za povezivanje na IPv6 mrežu Uputstvo za povezivanje na IPv6 mrežu Počevši od 6. juna 2012. godine, veliki javni servisi će biti dostupni širom sveta kako putem IPv4 tako i putem IPv6 adrese. Bitno je na vreme se priključiti novom

More information

Postupak konfiguracije ADSL modema ZTE u Routed PPPoE modu Detaljni opis konfiguracije

Postupak konfiguracije ADSL modema ZTE u Routed PPPoE modu Detaljni opis konfiguracije Postupak konfiguracije ADSL modema ZTE u Routed PPPoE modu Detaljni opis konfiguracije 1. Podešavanje računara Nakon povezivanja modema svim potrebnim kablovima na računar, linija i napajanje, uključujemo

More information

SQL - QUICK GUIDE. Allows users to access data in relational database management systems.

SQL - QUICK GUIDE. Allows users to access data in relational database management systems. http://www.tutorialspoint.com/sql/sql-quick-guide.htm SQL - QUICK GUIDE Copyright tutorialspoint.com What is SQL? SQL is Structured Query Language, which is a computer language for storing, manipulating

More information

Ako je Local Area Connection u stanju Disabled, kao na slici, desnim tasterom miša kliknemo na ikonicu i odaberemo lijevim tasterom opciju Enable.

Ako je Local Area Connection u stanju Disabled, kao na slici, desnim tasterom miša kliknemo na ikonicu i odaberemo lijevim tasterom opciju Enable. Postupak konfiguracije ADSL modema ZTE za uslugu moja TV Net Nakon povezivanja modema svim potrebnim kablovima na računar, linija i napajanje, uključujemo računar. Nakon učitavanja Windowsa kliknemo na

More information

DISCRETE MATHEMATICS AND ITS APPLICATIONS IN NETWORK ANALYSIS DISKRETNA MATEMATIKA I NJENE PRIMJENE U MREŽNOJ ANALIZI

DISCRETE MATHEMATICS AND ITS APPLICATIONS IN NETWORK ANALYSIS DISKRETNA MATEMATIKA I NJENE PRIMJENE U MREŽNOJ ANALIZI DISCRETE MATHEMATICS AND ITS APPLICATIONS IN NETWORK ANALYSIS mr. sc. Anton Vrdoljak, prof. matematike Građevinski fakultet Sveučilišta u Mostaru Abstract: In this article we will give a small introduction

More information

Uputstva za HTC. Sadržaj : 1. HTC HD2 2. 2. HTC Snap 4. 3. HTC Smart 6. 4. HTC Legend 8. 5. HTC Desire 9. 6. HTC Magic 10

Uputstva za HTC. Sadržaj : 1. HTC HD2 2. 2. HTC Snap 4. 3. HTC Smart 6. 4. HTC Legend 8. 5. HTC Desire 9. 6. HTC Magic 10 Sadržaj : 1. HTC HD2 2 2. HTC Snap 4 3. HTC Smart 6 4. HTC Legend 8 5. HTC Desire 9 6. HTC Magic 10 1 HTC HD2 1. Start 2. Settings 3. Connections 4. Connections 5. U okviru My ISP izabrati Add a new modem

More information

QUALITY MANAGEMENT OF HOTEL INFORMATION SYSTEM UPRAVLJANJE KVALITETOM HOTELSKOG INFORMACIJSKOG SUSTAVA

QUALITY MANAGEMENT OF HOTEL INFORMATION SYSTEM UPRAVLJANJE KVALITETOM HOTELSKOG INFORMACIJSKOG SUSTAVA 286 INFO-1035 UDK: 64.024: 519.68:007 Primljeno / Received: 2008-03-18 Preliminary Communication / Prethodno priopćenje UPRAVLJANJE KVALITETOM HOTELSKOG INFORMACIJSKOG SUSTAVA Faculty of Tourism and Hospitality

More information

RFID TECHNOLOGY, PRIVACY AND SECURITY UDC 65.011.56

RFID TECHNOLOGY, PRIVACY AND SECURITY UDC 65.011.56 FACTA UNIVERSITATIS Series: Mechanical Engineering Vol. 8, N o 1, 2010, pp. 57-62 RFID TECHNOLOGY, PRIVACY AND SECURITY UDC 65.011.56 Stevan Stankovski 1, Gordana Ostojić 1, Milovan Lazarević 1, Božidar

More information

Database Administration with MySQL

Database Administration with MySQL Database Administration with MySQL Suitable For: Database administrators and system administrators who need to manage MySQL based services. Prerequisites: Practical knowledge of SQL Some knowledge of relational

More information

SQL. Short introduction

SQL. Short introduction SQL Short introduction 1 Overview SQL, which stands for Structured Query Language, is used to communicate with a database. Through SQL one can create, manipulate, query and delete tables and contents.

More information

EU Beautiful Kosovo Programme Renovation of the School Yard 4 dëshmorët in Rahovec/Orahovac

EU Beautiful Kosovo Programme Renovation of the School Yard 4 dëshmorët in Rahovec/Orahovac EU Beautiful Kosovo Programme Renovation of the School Yard 4 dëshmorët in Rahovec/Orahovac The project Renovation of the School Yard 4 dëshmorët in the village Ratkoc/Ratkovac municipality of Rahovec/Orahovac,consists

More information

. g .,, . . , Applicability of

More information

How To Use A Microsoft Sql Server 2005

How To Use A Microsoft Sql Server 2005 Trening za pripremu certifikata Microsoft Certified Technology Specialist (MCTS): SQL Server 2005 Pregled Ovaj trening je priprema za certifikacijski ispit Exam 70 431: TS: Microsoft SQL Server 2005 Implementation

More information

Boats bid bname color 101 Interlake blue 102 Interlake red 103 Clipper green 104 Marine red. Figure 1: Instances of Sailors, Boats and Reserves

Boats bid bname color 101 Interlake blue 102 Interlake red 103 Clipper green 104 Marine red. Figure 1: Instances of Sailors, Boats and Reserves Tutorial 5: SQL By Chaofa Gao Tables used in this note: Sailors(sid: integer, sname: string, rating: integer, age: real); Boats(bid: integer, bname: string, color: string); Reserves(sid: integer, bid:

More information

DATA ACQUISITION METHODS IN LABORATORY AND MEDICAL INFORMATION SYSTEMS UDC 681.3.04 007:61]:004

DATA ACQUISITION METHODS IN LABORATORY AND MEDICAL INFORMATION SYSTEMS UDC 681.3.04 007:61]:004 FACTA UNIVERSITATIS Series: Automatic Control and Robotics Vol. 10, N o 1, 2011, pp. 97-103 DATA ACQUISITION METHODS IN LABORATORY AND MEDICAL INFORMATION SYSTEMS UDC 681.3.04 007:61]:004 Dušan Vučković,

More information

Lean Product Lifecycle Management Approach

Lean Product Lifecycle Management Approach International Journal of Industrial Engineering and Management (), Vol. 4 No 4, 2013, pp. 207-214 Available online at www.iim.ftn.uns.ac.rs/ijiem_journal.php ISSN 2217-2661 UDK:621:005.7 Lean Product Lifecycle

More information

B A S I C S C I E N C E S

B A S I C S C I E N C E S B A S I C S C I E N C E S 10 B A S I C S C I E N C E S F I R S T S E M E S T E R C O U R S E S : H U M A N S T R U C T U R E A N D F U N C T I O N [ H S F I ] M O L E C U L A R B A S I S O F M E D I C

More information

INTERDEPENDENCE OF ORGANIZATIONAL CULTURE AND LEADERSHIP STYLES IN LARGE FIRMS

INTERDEPENDENCE OF ORGANIZATIONAL CULTURE AND LEADERSHIP STYLES IN LARGE FIRMS ITERDEPEDECE OF ORGAIZATIOAL CULTURE AD LEADERSHIP STYLES I LARGE FIRMS Mario Buble * Received: 17. 9. 2012 Preliminary communication Accepted: 21.11. 2012 UDC: 65.01:65.017.1>(497.5) The purpose of this

More information

Baseline Report: Assessment of Competencies, Technical Skills and Needs in Bosnia Herzegovina's ICT Services Sector

Baseline Report: Assessment of Competencies, Technical Skills and Needs in Bosnia Herzegovina's ICT Services Sector Baseline Report: Assessment of Competencies, Technical Skills and Needs in Bosnia Herzegovina's ICT Services Sector March 2014 Baseline report: Assessment of Competencies, Technical Skills and Needs in

More information

MOVING TOWARDS CLOUD SECURITY

MOVING TOWARDS CLOUD SECURITY Interdisciplinary Description of Complex Systems 13(1), 9-14, 2015 MOVING TOWARDS CLOUD SECURITY Edit Szilvia Rubóczki 1 and Zoltán Rajnai 2, * 1 c/o Obuda University 1 Budapest, Hungary 2 Doctoral School

More information

METHODOLOGY OF INTRODUCING FLEET MANAGEMENT SYSTEM

METHODOLOGY OF INTRODUCING FLEET MANAGEMENT SYSTEM KRISTIJAN ROGIC, Ph.D. E-mail: rogick@fpz.hr University of Zagreb, Faculty of Transport and Traffic Sciences Vukeliceva 4, HR-10000 Zagreb, Republic of Croatia BRANISLA V SUTIC, M.Sc. E-mail: branislav.sutic1@gs.t-com.hr

More information

Slika 2. Other. Hardware

Slika 2. Other. Hardware Žiro račun: 2484008-1100164754 (RBA) Matični broj: 3703142 HR - 10000 Zagreb Savica Šanci 127 T +385 (0)1 2352 200 F +385 (0)1 2352 299 HR - 35000 Slavonski Brod Gajeva 32 T +385 (0)35 447 665 F +385 (0)35

More information

Financial Data Access with SQL, Excel & VBA

Financial Data Access with SQL, Excel & VBA Computational Finance and Risk Management Financial Data Access with SQL, Excel & VBA Guy Yollin Instructor, Applied Mathematics University of Washington Guy Yollin (Copyright 2012) Data Access with SQL,

More information

How To Understand The Maturity Model For Business Intelligence

How To Understand The Maturity Model For Business Intelligence OVERVIEW OF BUSINESS INTELLIGENCE MATURITY MODELS Irena Hribar Rajterič * Received: 12. 10. 2009 Review Accepted: 18. 03. 2010 UDC 65.012.34 Today, companies wish to evaluate and justify their investments

More information

THE SOURCES OF DANGERS AND THE CHARACTER OF INJURIES AT WORK IN THE GARMENT INDUSTRY UDC 331.45:677. Cvetko Z. Trajković, Dragan M.

THE SOURCES OF DANGERS AND THE CHARACTER OF INJURIES AT WORK IN THE GARMENT INDUSTRY UDC 331.45:677. Cvetko Z. Trajković, Dragan M. UNIVERSITY OF NIŠ The scientific journal FACTA UNIVERSITATIS Series: Working and Living Environmental Protection Vol. 1, No 4, 1999, pp. 107-113 Editor of series: Ljiljana Rašković, e-mail: ral@junis.ni.ac.yu

More information

P_Id LastName FirstName Address City 1 Kumari Mounitha VPura Bangalore 2 Kumar Pranav Yelhanka Bangalore 3 Gubbi Sharan Hebbal Tumkur

P_Id LastName FirstName Address City 1 Kumari Mounitha VPura Bangalore 2 Kumar Pranav Yelhanka Bangalore 3 Gubbi Sharan Hebbal Tumkur SQL is a standard language for accessing and manipulating databases. What is SQL? SQL stands for Structured Query Language SQL lets you access and manipulate databases SQL is an ANSI (American National

More information

Metric ERP/CRM software

Metric ERP/CRM software Metric ERP/CRM software Metric d.o.o. Stanka Vraza 15, 10290 Zapresic, Croatia metric@zg.t-com.hr tel. +385 313573 fax. +385 3319418 w w w.mymetric.net, w w w.metric.hr Metric ERP/CRM software Metric d.o.o.

More information

Cilj ovog rada je ukazati na moguće opasnosti koje postoje, prikazati mogućnosti zaštite osobnih podataka i drugih podataka u elektroničkom obliku.

Cilj ovog rada je ukazati na moguće opasnosti koje postoje, prikazati mogućnosti zaštite osobnih podataka i drugih podataka u elektroničkom obliku. UVOD U današnje vrijeme kada je internet potreban i važan resurs u svim organizacijama potrebno je naročito obratiti pozornost računalnoj sigurnosti i računalnim sigurnosnim mehanizmima, te zaštiti podataka.

More information

Business Intelligence. 10. OLAP, KPI ETL December 2013.

Business Intelligence. 10. OLAP, KPI ETL December 2013. Business Intelligence 10. OLAP, KPI ETL December 2013. Microsoft Analysis Services Poslovna inteligencija 2 Analysis Services freely available resources Analysis Services Tutorial: http://technet.microsoft.com/en-us/library/ms170208.aspx

More information

LEGAL PROBLEMS IN THE NATIONAL AND INTERNATIONAL ADMINISTRATION OF DOMAIN NAMES UDC 004.738.5:347.772. Mirjana Arsić, Saša Markota

LEGAL PROBLEMS IN THE NATIONAL AND INTERNATIONAL ADMINISTRATION OF DOMAIN NAMES UDC 004.738.5:347.772. Mirjana Arsić, Saša Markota FACTA UNIVERSITATIS Series: Law and Politics Vol. 9, N o 2, 2011, pp. 159-165 Review Article LEGAL PROBLEMS IN THE NATIONAL AND INTERNATIONAL ADMINISTRATION OF DOMAIN NAMES UDC 004.738.5:347.772 Mirjana

More information

HOW DOES EDUCATION INFLUENCE ENTREPRENEURSHIP ORIENTATION? CASE STUDY OF CROATIA

HOW DOES EDUCATION INFLUENCE ENTREPRENEURSHIP ORIENTATION? CASE STUDY OF CROATIA HOW DOES EDUCATION INFLUENCE ENTREPRENEURSHIP ORIENTATION? CASE STUDY OF CROATIA Ivana Bilić *, Ante Prka **, Gaia Vidović *** Received: 13. 9. 2010 Case study Accepted: 17. 3. 2011 UDC 378:65.012>(497.5)

More information

Online Media Planning. Ivan Dimitrijević

Online Media Planning. Ivan Dimitrijević Online Media Planning Ivan Dimitrijević $ #! %&!$ /$( #$!&())()%&$#! # Digitalna Srbija MEDIA MARKET OVERVIEW Skoro Source: Gemius Audience 1/2013 Miliona Aktivnih korisnika svakog meseca (2.998.000) Ali

More information

EFFECT OF TEMPERATURE DISTRIBUTION AROUND PIPELINES FOR TRANSPORTATION OF NATURAL GAS ON ENVIRONMENT

EFFECT OF TEMPERATURE DISTRIBUTION AROUND PIPELINES FOR TRANSPORTATION OF NATURAL GAS ON ENVIRONMENT ISSN 1848-0071 UDC 6.691+60.9)=111 Recieved: 01-03- Accepted: 01-04-18 Preliminary communication EFFECT OF TEMPERATURE DISTRIBUTION AROUND PIPELINES FOR TRANSPORTATION OF NATURAL GAS ON ENVIRONMENT DÁVID

More information

ERRORS AND ISSUES IN SECONDARY DATA USED IN MARKETING RESEARCH

ERRORS AND ISSUES IN SECONDARY DATA USED IN MARKETING RESEARCH Stručni članak UDK : 339.138 :31 JEL : M31 ERRORS AND ISSUES IN SECONDARY DATA USED IN MARKETING RESEARCH GREŠKE I PROBLEMI U SEKUNDARNIM PODACIMA KORIŠĆENIM U MARKETING ISTRAŽIVANJU 1 MA Svetlana Tasić

More information

The Role of Energy Storages in Energy Independent Croatia Krajai, Goran; Mathiesen, Brian Vad; Dui, Neven; Da Graça Carvalho, Maria

The Role of Energy Storages in Energy Independent Croatia Krajai, Goran; Mathiesen, Brian Vad; Dui, Neven; Da Graça Carvalho, Maria Aalborg Universitet The Role of Energy Storages in Energy Independent Croatia Krajai, Goran; Mathiesen, Brian Vad; Dui, Neven; Da Graça Carvalho, Maria Published in: Energy Day in Croatia Publication date:

More information

KONTEKSTNE INFORMACIJE POKRETNOG KORISNIKA USLUGA DRUŠTVENOG UMREŢAVANJA

KONTEKSTNE INFORMACIJE POKRETNOG KORISNIKA USLUGA DRUŠTVENOG UMREŢAVANJA SVEUČILIŠTE U ZAGREBU FAKULTET ELEKTROTEHNIKE I RAČUNARSTVA DIPLOMSKI RAD br. 603 KONTEKSTNE INFORMACIJE POKRETNOG KORISNIKA USLUGA DRUŠTVENOG UMREŢAVANJA Dejan Vasko Zagreb, lipanj 2013. Original ZADATAK

More information

TESTING IN MULTIPLE REGRESSION ANALYSIS UDC 519.233.5. Vera Djordjević

TESTING IN MULTIPLE REGRESSION ANALYSIS UDC 519.233.5. Vera Djordjević FACTA UNIVERITATI eries: Economics and Organization Vol. 1, N o 10, 00, pp. 5-9 TETING IN MULTIPLE REGREION ANALYI UDC 519.33.5 Vera Djordjević Faculty of Economics, University of Niš, 18000 Niš, erbia

More information

IEEE 802.11bg Mode:Monitor Frequency:2.437 GHz Tx-Power=20 dbm

IEEE 802.11bg Mode:Monitor Frequency:2.437 GHz Tx-Power=20 dbm root@bt:~# airmon-ng Interface Chipset Driver wlan0 wlan1 Ralink 2570 USB rt2500usb - [phy1] Intel 3945ABG iwl3945 - [phy0] root@bt:~# airmon-ng start wlan0 Interface Chipset Driver wlan0 Ralink 2570 USB

More information

DEVELOPMENT OF HUMAN RESOURCES AS STRATEGIC FACTORS OF THE COMPANIES' COMPETITIVE ADVANTAGE UDC 005.96. Jelena Vemić Đurković

DEVELOPMENT OF HUMAN RESOURCES AS STRATEGIC FACTORS OF THE COMPANIES' COMPETITIVE ADVANTAGE UDC 005.96. Jelena Vemić Đurković FACTA UNIVERSITATIS Series: Economics and Organization Vol. 6, N o 1, 2009, pp. 59-67 DEVELOPMENT OF HUMAN RESOURCES AS STRATEGIC FACTORS OF THE COMPANIES' COMPETITIVE ADVANTAGE UDC 005.96 Jelena Vemić

More information

BUSINESS RESULTS CHANGE UNDER EFFECTS OF FARM SIZE AND DEGREE OF PRODUCTION SPECIALIZATION. Lj. Bastajić 1

BUSINESS RESULTS CHANGE UNDER EFFECTS OF FARM SIZE AND DEGREE OF PRODUCTION SPECIALIZATION. Lj. Bastajić 1 Journal of Agricultural Sciences Vol. 48, No 2, 2003 Pages 205-216 UDC: 631.11.1:330.113 Original scientific paper BUSINESS RESULTS CHANGE UNDER EFFECTS OF FARM SIZE AND DEGREE OF PRODUCTION SPECIALIZATION

More information

MANAGEMENT IN CIVIL ENGINEERING AND ITS DEVELOPING TENDS UDC 69.01:625.7718(045) Milorad Zlatanović

MANAGEMENT IN CIVIL ENGINEERING AND ITS DEVELOPING TENDS UDC 69.01:625.7718(045) Milorad Zlatanović UNIVERSITY OF NIŠ The scientific journal FACTA UNIVERSITATIS Series: Architecture and Civil Engineering Vol.1, N o 5, 1998 pp. 637-644 Editors of series: Dragan Veličković, Dušan Ilić, e-mail: facta@ni.ac.yu

More information

How To Create A Table In Sql 2.5.2.2 (Ahem)

How To Create A Table In Sql 2.5.2.2 (Ahem) Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or

More information

Information Systems 2. 1. Modelling Information Systems I: Databases

Information Systems 2. 1. Modelling Information Systems I: Databases Information Systems 2 Information Systems 2 1. Modelling Information Systems I: Databases Lars Schmidt-Thieme Information Systems and Machine Learning Lab (ISMLL) Institute for Business Economics and Information

More information

David M. Kroenke and David J. Auer Database Processing: Fundamentals, Design and Implementation

David M. Kroenke and David J. Auer Database Processing: Fundamentals, Design and Implementation David M. Kroenke and David J. Auer Database Processing: Fundamentals, Design and Implementation Chapter Two: Introduction to Structured Query Language 2-1 Chapter Objectives To understand the use of extracted

More information

The Linux Small Business Server

The Linux Small Business Server The Linux Small Business Server Goran Šljivić Metalurški fakultet Sisak Aco Dmitrović Hrvatski geološki institut CUC 2011 Zentyal Gateway UTM Infrastructure management Office Unified Communications 2 Proizvođač

More information

LOGIČKE FUNKCIJE I STATISTIKA U MS EXCEL-U

LOGIČKE FUNKCIJE I STATISTIKA U MS EXCEL-U Sveučilište u Mostaru Fakultet prirodoslovno-matematičkih i odgojnih znanosti 1 LOGIČKE FUNKCIJE I STATISTIKA U MS EXCEL-U Asistent:Tomislav Volarić Email: volaric.tomislav@gmail.com Računalni praktikum

More information

The effectiveness of physical education of the Military Academy cadets during a 4-year study

The effectiveness of physical education of the Military Academy cadets during a 4-year study Strana 16 VOJNOSANITETSKI PREGLED Vojnosanit Pregl 2013; 70(1): 16 20. ORIGINAL ARTICLE UDC: 355.23:[613.71/.73:796.015 DOI: 10.2298/VSP1301016M The effectiveness of physical education of the Military

More information

Engine Output Increase of Two-stroke Combustion with Exhaust System Optimization

Engine Output Increase of Two-stroke Combustion with Exhaust System Optimization Strojarstvo 50 (2) 69-76 (2008) P. BIGOŠ et. al., Engine Output Increasing of Two-stroke... 69 CODEN STJSAO ISSN 0562-1887 ZX470/1333 UDK 621.432.4.053/.057 Engine Output Increase of Two-stroke Combustion

More information

Chapter 1 Overview of the SQL Procedure

Chapter 1 Overview of the SQL Procedure Chapter 1 Overview of the SQL Procedure 1.1 Features of PROC SQL...1-3 1.2 Selecting Columns and Rows...1-6 1.3 Presenting and Summarizing Data...1-17 1.4 Joining Tables...1-27 1-2 Chapter 1 Overview of

More information

VIRTUAL ORGANIZATION THE FUTURE HAS ALREADY BEGUN. Ksenija Čulo

VIRTUAL ORGANIZATION THE FUTURE HAS ALREADY BEGUN. Ksenija Čulo Ksenija Čulo: VIRTUAL ORGANIZATION THE FUTURE HAS ALREADY BEGUN 35 INFO- 99 UDK: 061+004.7:316.772 Primljeno/Received: 2015-04-14 Preliminary Communication/Prethodno priopćenje VIRTUAL ORGANIZATION THE

More information

Structured Query Language. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics

Structured Query Language. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Structured Query Language HANS- PETTER HALVORSEN, 2014.03.03 Faculty of Technology, Postboks 203,

More information

Relational Database: Additional Operations on Relations; SQL

Relational Database: Additional Operations on Relations; SQL Relational Database: Additional Operations on Relations; SQL Greg Plaxton Theory in Programming Practice, Fall 2005 Department of Computer Science University of Texas at Austin Overview The course packet

More information

A Generic Procedure for Integration Testing of ETL Procedures

A Generic Procedure for Integration Testing of ETL Procedures Igor Mekterović, Ljiljana Brkić, Mirta Baranović A Generic Procedure for Integration Testing of ETL Procedures UDK xxx.xxx.xx IFAC x.x;x.x.x (filled by editors) In order to attain a certain degree of confidence

More information

Large Scale Topographic Maps Generalisation and Visualization Based on New Methodology

Large Scale Topographic Maps Generalisation and Visualization Based on New Methodology Dinar, I. et al.: Large Scale Topographic Maps Generalisation and, Geod. list 2015, 3, 189 198 189 UDK 528.93:528.914:528.711.1:681.32]:004 Prethodno priopćenje / Preliminary note Large Scale Topographic

More information

Key factors contributing to accident severity rate in construction industry in Iran: a regression modelling approach

Key factors contributing to accident severity rate in construction industry in Iran: a regression modelling approach 47 Original article DOI: 10.1515/aiht-2016-67-2687 Key factors contributing to accident severity rate in construction industry in Iran: a regression modelling approach Ahmad Soltanzadeh 1, Iraj Mohammadfam

More information

Jakub Žabenský. Radomír Ščurek KEY WORDS KLJUČNE RIJEČI

Jakub Žabenský. Radomír Ščurek KEY WORDS KLJUČNE RIJEČI Increasing Personal Safety in Road Transport Using the Emergency Call Service Povećanje osobne sigurnosti u cestovnom prijevozu korištenjem usluge pozivanja hitne službe Jakub Žabenský VŠB Technical University

More information

AIESEC stručne prakse. Stručne prakse IT

AIESEC stručne prakse. Stručne prakse IT AIESEC stručne prakse Međunarodna stručna praksa jedna je od mogućnosti koju pruža međunarodna studentska organizacija AIESEC. Praksa je namijenjena svim studentima, apsolventima te onima koji su stekli

More information

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Using SQLite Manager SQL or Structured Query Language is a powerful way to communicate

More information

Question 1. Relational Data Model [17 marks] Question 2. SQL and Relational Algebra [31 marks]

Question 1. Relational Data Model [17 marks] Question 2. SQL and Relational Algebra [31 marks] EXAMINATIONS 2005 MID-YEAR COMP 302 Database Systems Time allowed: Instructions: 3 Hours Answer all questions. Make sure that your answers are clear and to the point. Write your answers in the spaces provided.

More information

IRON ABUNDANCE DETERMINATION FOR THE SOLAR-LIKE STARS HR4345 AND HR6573

IRON ABUNDANCE DETERMINATION FOR THE SOLAR-LIKE STARS HR4345 AND HR6573 Serb. Astron. J. 169 (2004), 41-45 UDC 524.3 36 Original scientific paper IRON ABUNDANCE DETERMINATION FOR THE SOLAR-LIKE STARS HR4345 AND HR6573 O. Vince and I. Vince Astronomical Observatory, Volgina

More information

Database Query 1: SQL Basics

Database Query 1: SQL Basics Database Query 1: SQL Basics CIS 3730 Designing and Managing Data J.G. Zheng Fall 2010 1 Overview Using Structured Query Language (SQL) to get the data you want from relational databases Learning basic

More information

Introduction to SQL for Data Scientists

Introduction to SQL for Data Scientists Introduction to SQL for Data Scientists Ben O. Smith College of Business Administration University of Nebraska at Omaha Learning Objectives By the end of this document you will learn: 1. How to perform

More information

Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification

Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 Outline More Complex SQL Retrieval Queries

More information

Comment on the Critique of the paper ERP and Management Accounting Changes of Industrial Enterprises in Serbia *

Comment on the Critique of the paper ERP and Management Accounting Changes of Industrial Enterprises in Serbia * Comment on the Critique of the paper ERP and Management Accounting Changes of Industrial Enterprises in Serbia * UDK 001.83 Slobodan Malinić, University of Kragujevac,Faculty of Economics, Kragujevac Mirjana

More information

SQL Basics. Introduction to Standard Query Language

SQL Basics. Introduction to Standard Query Language SQL Basics Introduction to Standard Query Language SQL What Is It? Structured Query Language Common Language For Variety of Databases ANSI Standard BUT. Two Types of SQL DML Data Manipulation Language

More information

P R E F E I T U R A M U N I C I P A L D E J A R D I M

P R E F E I T U R A M U N I C I P A L D E J A R D I M D E P A R T A M E N T O D E C O M P R A S E L I C I T A O A U T O R I Z A O P A R A R E A L I Z A O D E C E R T A M E L I C I T A T с R I O M O D A L I D A D E P R E G O P R E S E N C I A L N 034/ 2 0

More information

APPLICATION FOR A STUDENT VISA. Please note that access to the Australian Embassy Belgrade is by appointment only.

APPLICATION FOR A STUDENT VISA. Please note that access to the Australian Embassy Belgrade is by appointment only. Department of Immigration and Citizenship Australian Embassy, Belgrade Vladimira Popovica 38-40, Floor 8, 11070 New Belgrade, Serbia Tel: 381 11 3303400 Fax: 381 11 3303441 website: www.serbia.embassy.gov.au

More information

Choice of Quantitative Method for Forecasting of Parquet Sales

Choice of Quantitative Method for Forecasting of Parquet Sales ... Oblak, Zadnik Stirn, Moro, Hrovatin, Mole, Kitek Kuzman: Choice of Quantitative... Leon Oblak 1, Lidija Zadnik Stirn 1, Maja Moro 2, Jasna Hrovatin 3, Samo Mole 1, Manja Kitek Kuzman 1 Choice of Quantitative

More information

PUBLIC ADMINISTRATION MAIN FACTOR IN SUCCESSFUL MANAGEMENT OF COASTAL AREA DEVELOPMENT IN REPUBLIC OF CROATIA

PUBLIC ADMINISTRATION MAIN FACTOR IN SUCCESSFUL MANAGEMENT OF COASTAL AREA DEVELOPMENT IN REPUBLIC OF CROATIA Interdisciplinary Description of Complex Systems 10(1), 16-27, 2012 PUBLIC ADMINISTRATION MAIN FACTOR IN SUCCESSFUL MANAGEMENT OF COASTAL AREA DEVELOPMENT IN REPUBLIC OF CROATIA Alen Jugović* 1 Faculty

More information

Introduction to Proc SQL Katie Minten Ronk, Systems Seminar Consultants, Madison, WI

Introduction to Proc SQL Katie Minten Ronk, Systems Seminar Consultants, Madison, WI Paper 268-29 Introduction to Proc SQL Katie Minten Ronk, Systems Seminar Consultants, Madison, WI ABSTRACT PROC SQL is a powerful Base SAS Procedure that combines the functionality of DATA and PROC steps

More information

Structured Query Language (SQL)

Structured Query Language (SQL) Objectives of SQL Structured Query Language (SQL) o Ideally, database language should allow user to: create the database and relation structures; perform insertion, modification, deletion of data from

More information

3.GETTING STARTED WITH ORACLE8i

3.GETTING STARTED WITH ORACLE8i Oracle For Beginners Page : 1 3.GETTING STARTED WITH ORACLE8i Creating a table Datatypes Displaying table definition using DESCRIBE Inserting rows into a table Selecting rows from a table Editing SQL buffer

More information

A table is a collection of related data entries and it consists of columns and rows.

A table is a collection of related data entries and it consists of columns and rows. CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.

More information

Leisure-Time Activities Its Program and Importance in the Institutionalized Protection of Old People

Leisure-Time Activities Its Program and Importance in the Institutionalized Protection of Old People Coll. Antropol. 27 (2003) 2: 439 444 UDC 613.98:331.3-053.9 Original scientific paper Leisure-Time Activities Its Program and Importance in the Institutionalized Protection of Old People Marijana Ljubi}

More information

SQL 2: GETTING INFORMATION INTO A DATABASE. MIS2502 Data Analytics

SQL 2: GETTING INFORMATION INTO A DATABASE. MIS2502 Data Analytics SQL 2: GETTING INFORMATION INTO A DATABASE MIS2502 Data Analytics Our relational database A series of tables Linked together through primary/foreign key relationships To create a database We need to define

More information

Lecture 25: Database Notes

Lecture 25: Database Notes Lecture 25: Database Notes 36-350, Fall 2014 12 November 2014 The examples here use http://www.stat.cmu.edu/~cshalizi/statcomp/ 14/lectures/23/baseball.db, which is derived from Lahman s baseball database

More information

Closed-loop supply chain coordination based on recyclers' competition model

Closed-loop supply chain coordination based on recyclers' competition model UDC 336.6:339.1:19.86 Original scientific paper Received: 04.06.13. Closed-loop supply chain coordination based on recyclers' competition model Chao He, Xue-Feng Song and Chun-Hua Feng School of Management,

More information

Application of Bošković s Geometric Adjustment. on Five Meridian Degrees On the Occasion of 300th Anniversary of the Birth of Rud - er Josip Bošković

Application of Bošković s Geometric Adjustment. on Five Meridian Degrees On the Occasion of 300th Anniversary of the Birth of Rud - er Josip Bošković Professional paper Accepted 30. 11. 2011. MARTINA TRIPLAT HORVAT MILJENKO LAPAINE DRAŽEN TUTIĆ Application of Bošković s Geometric Adjustment Method on Five Meridian Degrees On the Occasion of 300th Anniversary

More information

White Paper. PiLab Technology Performance Test, Deep Queries. pilab.pl

White Paper. PiLab Technology Performance Test, Deep Queries. pilab.pl White Paper PiLab Technology Performance Test, Deep Queries pilab.pl Table of Content Forward... 3 Summary of Results... 3 Technical Introduction... 3 Hardware... 4 Disk read/write speed... 4 Network speed

More information

OLAP Systems and Multidimensional Expressions I

OLAP Systems and Multidimensional Expressions I OLAP Systems and Multidimensional Expressions I Krzysztof Dembczyński Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland Software Development Technologies Master

More information

EECS 647: Introduction to Database Systems

EECS 647: Introduction to Database Systems EECS 647: Introduction to Database Systems Instructor: Luke Huan Spring 2013 Administrative Take home background survey is due this coming Friday The grader of this course is Ms. Xiaoli Li and her email

More information

CSI 2132 Lab 3. Outline 09/02/2012. More on SQL. Destroying and Altering Relations. Exercise: DROP TABLE ALTER TABLE SELECT

CSI 2132 Lab 3. Outline 09/02/2012. More on SQL. Destroying and Altering Relations. Exercise: DROP TABLE ALTER TABLE SELECT CSI 2132 Lab 3 More on SQL 1 Outline Destroying and Altering Relations DROP TABLE ALTER TABLE SELECT Exercise: Inserting more data into previous tables Single-table queries Multiple-table queries 2 1 Destroying

More information

Part A: Data Definition Language (DDL) Schema and Catalog CREAT TABLE. Referential Triggered Actions. CSC 742 Database Management Systems

Part A: Data Definition Language (DDL) Schema and Catalog CREAT TABLE. Referential Triggered Actions. CSC 742 Database Management Systems CSC 74 Database Management Systems Topic #0: SQL Part A: Data Definition Language (DDL) Spring 00 CSC 74: DBMS by Dr. Peng Ning Spring 00 CSC 74: DBMS by Dr. Peng Ning Schema and Catalog Schema A collection

More information

STUDENT DROPOUT ANALYSIS WITH APPLICATION OF DATA MINING METHODS

STUDENT DROPOUT ANALYSIS WITH APPLICATION OF DATA MINING METHODS STUDENT DROPOUT ANALYSIS WITH APPLICATION OF DATA MINING METHODS Mario Jadrić * Željko Garača ** Maja Ćukušić *** Received: 23. 10. 2010 Preliminary communication Accepted: 30. 03. 2010 UDC 65.012.34:378

More information

AGE AND EDUCATION AS DETERMINANTS OF ENTREPRENEURSHIP UDC 005.961:005.914.3. Suzana Stefanović, Danijela Stošić

AGE AND EDUCATION AS DETERMINANTS OF ENTREPRENEURSHIP UDC 005.961:005.914.3. Suzana Stefanović, Danijela Stošić FACTA UNIVERSITATIS Series: Economics and Organization Vol. 9, N o 3, 2012, pp. 327-339 Review paper AGE AND EDUCATION AS DETERMINANTS OF ENTREPRENEURSHIP UDC 005.961:005.914.3 Suzana Stefanović, Danijela

More information

jeudi 22 octobre 15 Limbajul SQL

jeudi 22 octobre 15 Limbajul SQL Limbajul SQL Principiile SQL O interogatie se termina prin ; Instructiunile sunt in majuscule (conventie) Numele câmpurilor sau a tabelelor - scriere exacta Numele nu pot depasi 128 caractere 2/ 21 Gestiunea

More information

MULTICRITERIA INVENTORY MODEL FOR SPARE PARTS

MULTICRITERIA INVENTORY MODEL FOR SPARE PARTS M. Bošnjaković Višekriterijski model skladištenja rezervnih dijelova ISSN 1330-3651 UDC/UDK 658.786/.787.011.8 MULTICRITERIA INVENTORY MODEL FOR SPARE PARTS Mladen Bošnjaković Preliminary notes Inventory

More information

Mini User's Guide for SQL*Plus T. J. Teorey

Mini User's Guide for SQL*Plus T. J. Teorey Mini User's Guide for SQL*Plus T. J. Teorey Table of Contents Oracle/logging-in 1 Nested subqueries 5 SQL create table/naming rules 2 Complex functions 6 Update commands 3 Save a query/perm table 6 Select

More information

- Eliminating redundant data - Ensuring data dependencies makes sense. ie:- data is stored logically

- Eliminating redundant data - Ensuring data dependencies makes sense. ie:- data is stored logically Normalization of databases Database normalization is a technique of organizing the data in the database. Normalization is a systematic approach of decomposing tables to eliminate data redundancy and undesirable

More information

Introduction to Proc SQL Steven First, Systems Seminar Consultants, Madison, WI

Introduction to Proc SQL Steven First, Systems Seminar Consultants, Madison, WI Paper #HW02 Introduction to Proc SQL Steven First, Systems Seminar Consultants, Madison, WI ABSTRACT PROC SQL is a powerful Base SAS Procedure that combines the functionality of DATA and PROC steps into

More information

SQL, the underestimated Big Data technology

SQL, the underestimated Big Data technology SQL, the underestimated Big Data technology No tation Seen at the 2013 O Reilly Strata Conf: History of NoSQL by Mark Madsen. Picture published by Edd Dumbill NoSQL? NoSQL? No, SQL! Our vision at Data

More information

Multimedia Resources in an Online Course: Access and Usage with Respect to Sensory Modality

Multimedia Resources in an Online Course: Access and Usage with Respect to Sensory Modality Multimedia Resources in an Online Course: Access and Usage with Respect to Sensory Modality Tomislava Lauc, Sanja Kišiček and Petra Bago Faculty of Humanities and Social Sciences, University of Zagreb

More information

ADVANTAGES AND LIMITATIONS OF THE DISCOUNTED CASH FLOW TO FIRM VALUATION

ADVANTAGES AND LIMITATIONS OF THE DISCOUNTED CASH FLOW TO FIRM VALUATION Pregledni rad Škola biznisa Broj 1/2013 UDC 005.52:330.133.1 ADVANTAGES AND LIMITATIONS OF THE DISCOUNTED CASH FLOW TO FIRM VALUATION Sanja Vlaović Begović *, Higher School of Professional Business Studies,

More information

IMPLEMENTATION OF FACEBOOK IN FOREIGN LANGUAGE TEACHING IN HIGHER EDUCATION IMPLEMENTACIJA FACEBOOKA U NASTAVI STRANIH JEZIKA U VISOKOM OBRAZOVANJU

IMPLEMENTATION OF FACEBOOK IN FOREIGN LANGUAGE TEACHING IN HIGHER EDUCATION IMPLEMENTACIJA FACEBOOKA U NASTAVI STRANIH JEZIKA U VISOKOM OBRAZOVANJU Darija Kuharić, senior lecturer of German language Faculty of Agriculture Osijek HR-31000 Osijek, 1d P. Svačića Phone: +385 (0)31 554-940 Fax: +385 (0)31 554-800 E-mail address: dkuharic@pfos.hr Ljubica

More information

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ).

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ). PROCEDIMIENTO DE RECUPERACION Y COPIAS DE SEGURIDAD DEL CORTAFUEGOS LINUX P ar a p od e r re c u p e ra r nu e s t r o c o rt a f u e go s an t e un d es a s t r e ( r ot u r a d e l di s c o o d e l a

More information

NEGOTIATION AND POWER

NEGOTIATION AND POWER NEGOTIATION AND POWER PREGOVARANJE I MOĆ Gordana Dobrijević Ph.D Singidunum University Rad primljen: 25.08.2010. UDK: 005.574/.58 Abstract: In every negotiation, power is the element that ultimately gives

More information

SQL Injection. SQL Injection. CSCI 4971 Secure Software Principles. Rensselaer Polytechnic Institute. Spring 2010 ...

SQL Injection. SQL Injection. CSCI 4971 Secure Software Principles. Rensselaer Polytechnic Institute. Spring 2010 ... SQL Injection CSCI 4971 Secure Software Principles Rensselaer Polytechnic Institute Spring 2010 A Beginner s Example A hypothetical web application $result = mysql_query(

More information

How to search, organize and manage data?

How to search, organize and manage data? How to search, organize and manage data? Databases 1. Bibliographical include data on papers (author, title, publication, abstract, URL address) in different publications, may collect data on papers from

More information