Posts marked with “sql”

Decrypting Cryptography

by · October 21, 2021

0
 

Change is hard at first, messy in the middle, and gorgeous at the end.—Robin Sharma PHP Architect is going through change, and we hope you follow us for the adventure.

 

What I Wish Someone Told Me About SQL Database Design

by · October 20, 2021

0
 

As shocking as this may be, not every team has a dedicated database administrator. I’ve never worked on a team that has had someone solely focused on making sure our queries are performant, and our tables are structured perfectly with all the forms of normalization being applied. Like many developers, I have had to learn […]

 

Querying NoSQL With SQL: HAVING Your JSON Cake and SELECTing It Too!

by · August 6, 2020

0
 

Interested in NoSQL document databases, but discouraged by a lack of a standard query language? Let’s put the SQL back in NoSQL. In this article, let’s explore how a NoSQL document database models data and how SQL can be used to query data without schemas or tables.

 

PostgreSQL 9.0 beta released

by · May 5, 2010

1
 

PostgreSQL has roughly one-quarter of the market share of MySQL, and I’d guess that PHP projects favor MySQL even more. But PostgreSQL deserves some love from the PHP community too. PostgreSQL is open source with a simpler license that’s closer to PHP’s license. As RDBMS technology, PostgreSQL has always been more advanced than MySQL. Don’t you wish MySQL supported check constraints? Sequences? Recursive queries, common table expressions, and window functions?

 

Using a framework? Why you should still learn OO and SQL

by · April 27, 2010

6
 

If you’ve only ever used a framework to do data-driven or object-oriented programming, you might not know as much as you think. Read why it’s important to learn object-oriented programming and SQL…even if your framework does all the heavy lifting for you.

 

New SQL Server driver released

by · April 26, 2010

4
 

Microsoft recently announced their new PDO driver for SQL Server. The goal is to make it easier for developers to support multiple databases with their applications and to make it easier for popular PHP applications to offer a SQL server option.

 

Oracle PHP Generator

by · April 19, 2010

2
 

Is generating a PHP application to access a database a good development process?