SØG - mellem flere end 8 millioner bøger:

Søg på: Titel, forfatter, forlag - gerne i kombination.
Eller blot på isbn, hvis du kender dette.

Viser: Learning the MySQL Database

Learning MySQL and MariaDB, 1. udgave
Søgbar e-bog

Learning MySQL and MariaDB Vital Source e-bog

Russell J.T. Dyer
(2015)
O'Reilly Media, Inc
471,00 kr.
Leveres umiddelbart efter køb
Learning MySQL and MariaDB, 1. udgave
Søgbar e-bog

Learning MySQL and MariaDB Vital Source e-bog

Russell J.T. Dyer
(2015)
O'Reilly Media, Inc
417,00 kr.
Leveres umiddelbart efter køb
Learning the MySQL Database

Learning the MySQL Database

Russell J. T. Dyer
(2015)
Sprog: Engelsk
O'Reilly Media, Incorporated
453,00 kr.
ikke på lager, Bestil nu og få den leveret
om ca. 10 hverdage

Detaljer om varen

  • 1. Udgave
  • Vital Source searchable e-book (Reflowable pages): 408 sider
  • Udgiver: O'Reilly Media, Inc (Marts 2015)
  • ISBN: 9781449362850
If you’re a programmer new to databases—or just new to MySQL and its community-driven variant, MariaDB—you’ve found the perfect introduction. This hands-on guide provides an easy, step-by-step approach to installing, using, and maintaining these popular relational database engines. Author Russell Dyer, Curriculum Manager at MariaDB and former editor of the MySQL Knowledge Base, takes you through database design and the basics of data management and manipulation, using real-world examples and many practical tips. Exercises and review questions help you practice what you’ve just learned. Create and alter MySQL tables and specify fields and columns within them Learn how to insert, select, update, delete, join, and subquery data, using practical examples Use built-in string functions to find, extract, format, and convert text from columns Learn functions for mathematical or statistical calculations, and for formatting date and time values Perform administrative duties such as managing user accounts, backing up databases, and importing large amounts of data Use APIs to connect and query MySQL and MariaDB with PHP and other languages
Licens varighed:
Bookshelf online: 5 år fra købsdato.
Bookshelf appen: ubegrænset dage fra købsdato.

Udgiveren oplyser at følgende begrænsninger er gældende for dette produkt:
Print: -1 sider kan printes ad gangen
Copy: højest -1 sider i alt kan kopieres (copy/paste)

Detaljer om varen

  • 1. Udgave
  • Vital Source searchable e-book (Fixed pages): 408 sider
  • Udgiver: O'Reilly Media, Inc (Marts 2015)
  • ISBN: 9781449362874
If you’re a programmer new to databases—or just new to MySQL and its community-driven variant, MariaDB—you’ve found the perfect introduction. This hands-on guide provides an easy, step-by-step approach to installing, using, and maintaining these popular relational database engines. Author Russell Dyer, Curriculum Manager at MariaDB and former editor of the MySQL Knowledge Base, takes you through database design and the basics of data management and manipulation, using real-world examples and many practical tips. Exercises and review questions help you practice what you’ve just learned. Create and alter MySQL tables and specify fields and columns within them Learn how to insert, select, update, delete, join, and subquery data, using practical examples Use built-in string functions to find, extract, format, and convert text from columns Learn functions for mathematical or statistical calculations, and for formatting date and time values Perform administrative duties such as managing user accounts, backing up databases, and importing large amounts of data Use APIs to connect and query MySQL and MariaDB with PHP and other languages
Licens varighed:
Bookshelf online: 5 år fra købsdato.
Bookshelf appen: ubegrænset dage fra købsdato.

Udgiveren oplyser at følgende begrænsninger er gældende for dette produkt:
Print: 10 sider kan printes ad gangen
Copy: højest 10 sider i alt kan kopieres (copy/paste)

Detaljer om varen

  • Paperback: 406 sider
  • Udgiver: O'Reilly Media, Incorporated (Maj 2015)
  • ISBN: 9781449362904

If you're a programmer new to databases--or just new to MySQL and its community-driven variant, MariaDB--you've found the perfect introduction. This hands-on guide provides an easy, step-by-step approach to installing, using, and maintaining these popular relational database engines.

Author Russell Dyer, Curriculum Manager at MariaDB and former editor of the MySQL Knowledge Base, takes you through database design and the basics of data management and manipulation, using real-world examples and many practical tips. Exercises and review questions help you practice what you've just learned.

  • Create and alter MySQL tables and specify fields and columns within them
  • Learn how to insert, select, update, delete, join, and subquery data, using practical examples
  • Use built-in string functions to find, extract, format, and convert text from columns
  • Learn functions for mathematical or statistical calculations, and for formatting date and time values
  • Perform administrative duties such as managing user accounts, backing up databases, and importing large amounts of data
  • Use APIs to connect and query MySQL and MariaDB with PHP and other languages
Foreword; Origins of MySQL; State of MySQL and MariaDB; Beyond the Server; MariaDB: The Differences and Expectations; The Future of MySQL and MariaDB; Your Future in Learning MySQL and MariaDB; Advice on Learning MySQL and MariaDB;Preface; Reading Strategy; Text-Based Interface and Operating Systems; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgments;The Software;
Chapter 1: Introduction;
1.1 The Value of MySQL and MariaDB;
1.2 Mailing Lists and Forums;
1.3 Other Books and Other Publications;
Chapter 2: Installing MySQL and MariaDB;
2.1 The Installation Packages;
2.2 Licensing;
2.3 Finding the Software;
2.4 Choosing a Distribution;
2.5 The _AMP Alternatives;
2.6 Post-Installation;
Chapter 3: The Basics and the mysql Client;
3.1 The mysql Client;
3.2 Connecting to the Server;
3.3 Starting to Explore Databases;
3.4 Summary;
3.5 Exercises;Database Structures;
Chapter 4: Creating Databases and Tables;
4.1 Creating a Database;
4.2 Creating Tables;
4.3 Inserting Data;
4.4 More Perspectives on Tables;
4.5 Summary;
4.6 Exercises;
Chapter 5: Altering Tables;
5.1 Prudence When Altering Tables;
5.2 Essential Changes;
5.3 Optional Changes;
5.4 Indexes;
5.5 Summary;
5.6 Exercises;Basics of Handling Data;
Chapter 6: Inserting Data;
6.1 The Syntax;
6.2 Practical Examples;
6.3 Other Possibilities;
6.4 Summary;
6.5 Exercises;
Chapter 7: Selecting Data;
7.1 Basic Selection;
7.2 Selecting by a Criteria;
7.3 Ordering Results;
7.4 Limiting Results;
7.5 Combining Tables;
7.6 Expressions and the Like;
7.7 Counting and Grouping Results;
7.8 Summary;
7.9 Exercises;
Chapter 8: Updating and Deleting Data;
8.1 Updating Data;
8.2 Deleting Data;
8.3 Summary;
8.4 Exercises;
Chapter 9: Joining and Subquerying Data;
9.1 Unifying Results;
9.2 Joining Tables;
9.3 Subqueries;
9.4 Summary;
9.5 Exercises;Built-In Functions;
Chapter 10: String Functions;
10.1 Formatting Strings;
10.2 Extracting Text;
10.3 Searching Strings and Using Lengths;
10.4 Converting String Types;
10.5 Compressing Strings;
10.6 Summary;
10.7 Exercises;
Chapter 11: Date and Time Functions;
11.1 Date and Time Data Types;
11.2 Current Date and Time;
11.3 Extracting Date and Time Components;
11.4 Formatting Dates and Time;
11.5 Adjusting to Standards and Time Zones;
11.6 Adding and Subtracting Dates and Time;
11.7 Comparing Dates and Times;
11.8 Summary;
11.9 Exercises;
Chapter 12: Aggregate and Numeric Functions;
12.1 Aggregate Functions;
12.2 Numeric Functions;
12.3 Summary;
12.4 Exercises;Administration and Beyond;
Chapter 13: User Accounts and Privileges;
13.1 User Account Basics;
13.2 Restricting the Access of User Accounts;
13.3 Administrative User Accounts;
13.4 Revoking Privileges;
13.5 Deleting a User Account;
13.6 Changing Passwords and Names;
13.7 User Roles;
13.8 Summary;
13.9 Exercises;
Chapter 14: Backing Up and Restoring Databases;
14.1 Making Backups;
14.2 Restoring Backups;
14.3 Developing a Backup Policy;
14.4 Summary;
14.5 Exercises;
Chapter 15: Bulk Importing Data;
15.1 Preparing to Import;
15.2 Loading Data Basics;
15.3 Better Loading;
15.4 More Field and Line Definitions;
15.5 Importing from Outside MySQL;
15.6 Bulk Exporting Data;
15.7 Summary;
15.8 Exercises;
Chapter 16: Application Programming Interfaces;
16.1 Creating API User Accounts;
16.2 C API;
16.3 Perl DBI;
16.4 PHP API;
16.5 Python;
16.6 Ruby API;
16.7 SQL Injection;
16.8 Summary;
16.9 Exercises;Colophon;
De oplyste priser er inkl. moms

Polyteknisk Boghandel

har gennem mere end 50 år været studieboghandlen på DTU og en af Danmarks førende specialister i faglitteratur.

 

Vi lagerfører et bredt udvalg af bøger, ikke bare inden for videnskab og teknik, men også f.eks. ledelse, IT og meget andet.

Læs mere her


Trykt eller digital bog?

Ud over trykte bøger tilbyder vi tre forskellige typer af digitale bøger:

 

Vital Source Bookshelf: En velfungerende ebogsplatform, hvor bogen downloades til din computer og/eller mobile enhed.

 

Du skal bruge den gratis Bookshelf software til at læse læse bøgerne - der er indbygget gode værktøjer til f.eks. søgning, overstregning, notetagning mv. I langt de fleste tilfælde vil du samtidig have en sideløbende 1825 dages online adgang. Læs mere om Vital Source bøger

 

Levering: I forbindelse med købet opretter du et login. Når du har installeret Bookshelf softwaren, logger du blot ind og din bog downloades automatisk.

 

 

Adobe ebog: Dette er Adobe DRM ebøger som downloades til din lokale computer eller mobil enhed.

 

For at læse bøgerne kræves særlig software, som understøtter denne type. Softwaren er gratis, men du bør sikre at du har rettigheder til installere software på den maskine du påtænker at anvende den på. Læs mere om Adobe DRM bøger

 

Levering: Et download link sendes pr email umiddelbart efter købet.

 


Ibog: Dette er en online bog som kan læses på udgiverens website. 

Der kræves ikke særlig software, bogen læses i en almindelig browser.

 

Levering: Vores medarbejder sender dig en adgangsnøgle pr email.

 

Vi gør opmærksom på at der ikke er retur/fortrydelsesret på digitale varer.