Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

5 total results found

Content Management Systems

Applications/Software

Content Management Systems (CMS) are web programs that make it easier to add and update content on web sites. Instead of learning HTML, FTP and web server commands, once a CMS is set up and a template “look” is defined, others can usually add material very eas...

CMS
asp
MySQL
open source
PHP
Python
SQL
web development

How do I count the number of times a word or phrase occurs in a string?

Programming and Web Development

Assuming that you don’t have a built-in function that does this in one shot…Here is a trick for quickly (i.e. using minimal typing effort) counting the number of times a string occurs in a larger string:Below is some pseudocode for searching for a string calle...

shortcuts
algorithms
PostgreSQL
programming
SQL

What is SQLAlchemy

Programming and Web Development

SQLAlchemy is an open-source Python Database toolkit, which provides the following functionality: It maps relational databases into objects It manages an applications database connections It can create/alter a database layout if it is allowed toThe most powerf...

pylons
Python
SQL

SQL joins

Programming and Web Development SQL

Please add other helpful links:SQL joins: a visual explanationhttp://www.codinghorror.com/blog/2007/10/a-visual-explanation-of-sql-joins.html

cross join
database
inner join
join
left join
MySQL
outer join
SQL

How can I search/replace strings in MySQL?

Programming and Web Development SQL

MySQL lets you replace all occurrences of a character or string of characters in a table with some other character or string.UPDATE table SET field1 = REPLACE(field1, 'replace_that', 'with_this'), field2 = REPLACE(field2, 'and_that', 'with_this')As an example,...

MySQL
SQL
search
replace
transpose