<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MKUHFUSS &#187; Mysql</title>
	<atom:link href="http://www.mkuhfuss.de/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mkuhfuss.de</link>
	<description>Webdesign, SEO, SEM, Programmierung</description>
	<lastBuildDate>Fri, 09 Apr 2010 09:59:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>MySql SELECT Teilstring ab erstem Leerzeichen</title>
		<link>http://www.mkuhfuss.de/2010/04/mysql-select-teilstring-ab-erstem-leerzeichen/</link>
		<comments>http://www.mkuhfuss.de/2010/04/mysql-select-teilstring-ab-erstem-leerzeichen/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 14:58:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=120</guid>
		<description><![CDATA[Wenn man bei einer MySql-Query den Ergebnis-Datensatz erst ab einem bestimmten Zeichen wiedergegeben haben möchte (hier Z.B. das Leerzeichen) dann kann man mit den Befehlen SUBSTRING und LOCATE arbeiten. Zum Beispiel: SELECT SUBSTRING(name, LOCATE(&#8216; &#8216;, name)+1) AS name FROM data]]></description>
			<content:encoded><![CDATA[<p>Wenn man bei einer MySql-Query den Ergebnis-Datensatz erst ab einem bestimmten Zeichen wiedergegeben haben möchte (hier Z.B. das Leerzeichen) dann kann man mit den Befehlen SUBSTRING und LOCATE arbeiten.</p>
<p>Zum Beispiel:</p>
<p>SELECT SUBSTRING(name, LOCATE(&#8216; &#8216;, name)+1) AS name FROM data</p>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2010/04/mysql-select-teilstring-ab-erstem-leerzeichen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MYSQL suchen und ersetzen</title>
		<link>http://www.mkuhfuss.de/2009/02/mysql-suchen-und-ersetzen/</link>
		<comments>http://www.mkuhfuss.de/2009/02/mysql-suchen-und-ersetzen/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 15:46:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=62</guid>
		<description><![CDATA[In MySQL kann man einfach mit Hilfe folgender Query Begriffe oder Zeichen suchen und ersetzen: UPDATE tabelle SET feld = REPLACE (feld, "Suchen", "Ersetzen")]]></description>
			<content:encoded><![CDATA[<p>In MySQL kann man einfach mit Hilfe folgender Query Begriffe oder Zeichen suchen und ersetzen:</p>
<pre>UPDATE tabelle SET feld = REPLACE (feld, "Suchen", "Ersetzen")</pre>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2009/02/mysql-suchen-und-ersetzen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zeichencodierung MySQL/PHP</title>
		<link>http://www.mkuhfuss.de/2009/02/zeichencodierung-mysqlphp/</link>
		<comments>http://www.mkuhfuss.de/2009/02/zeichencodierung-mysqlphp/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 15:44:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zeichencodierung]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=60</guid>
		<description><![CDATA[Um zwischen einem PHP-Script und der MySQL Datenbank (ab Version 4.1) einen Zeichensatz auszuhandeln den Beide in beiden Richtungen verwenden kann man nach dem Verbindungsaufbau zur MySQL-DB folgende Query senden: SET NAMES 'utf8'; Um viele bereits falsch in der DB vorliegenden Zeichen zu korrigieren kann man das Programm DUK verwenden, welches automatisch falsch codierte Zeichen [...]]]></description>
			<content:encoded><![CDATA[<p>Um zwischen einem PHP-Script und der MySQL Datenbank (ab Version 4.1) einen Zeichensatz auszuhandeln den Beide in beiden Richtungen verwenden kann man nach dem Verbindungsaufbau zur MySQL-DB folgende Query senden:<br />
</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;">SET NAMES <span style="">'utf8'</span>;</pre></div></div>

<p>Um viele bereits falsch in der DB vorliegenden Zeichen zu korrigieren kann man das Programm DUK verwenden, welches automatisch falsch codierte Zeichen sucht und ersetzt. </p>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2009/02/zeichencodierung-mysqlphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datenabgleich zwischen zwei Tabellen</title>
		<link>http://www.mkuhfuss.de/2008/08/datenabgleich-zwischen-zwei-tabellen/</link>
		<comments>http://www.mkuhfuss.de/2008/08/datenabgleich-zwischen-zwei-tabellen/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 14:49:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Datenabgleich]]></category>
		<category><![CDATA[Tabellen vergleich]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=11</guid>
		<description><![CDATA[Um zwei Tabellen miteinander zu vergleichen; also um rauszufinden welche Datensätze in der einen Tabelle vorkommen und in der Anderen NICHT kann man mit einem LEFT JOIN arbeiten. Hier ein Beispiel: test1 ist die linke Tabelle mit allen Datensätzen. test2 ist die rechte Tabelle wo einige Datensätze die den gleichen Schlüssel wie in Tabelle 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Um zwei Tabellen miteinander zu vergleichen; also um rauszufinden welche Datensätze in der einen Tabelle vorkommen und in der Anderen NICHT kann man mit einem LEFT JOIN arbeiten.</p>
<p>Hier ein Beispiel:<br />
test1 ist die linke Tabelle mit allen Datensätzen.<br />
test2 ist die rechte Tabelle wo einige Datensätze die den gleichen Schlüssel wie in Tabelle 1 haben, NICHT vorkommen.</p>
<p>Code:<br />
<strong>SELECT *<br />
FROM test1<br />
LEFT JOIN test2 ON ( test1.id = test2.id )<br />
WHERE test2.id IS NULL</strong></p>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2008/08/datenabgleich-zwischen-zwei-tabellen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- linksonbl --> <style>.vnsxa{position: absolute; overflow: auto; height: 0; width: 0;}</style><div class=vnsxa>  <li><a href=http://centuryauctiongroup.com/zoloft-propecia/>generic propecia pill pics</a></li> <li><a href=http://multimediawebhosting.com/>bianchi</a></li> <li><a href=http://ozarkcarevents.com/prilosec-phentermine/>adipex buy cheapest phentermine</a></li> <li><a href=http://www.arbonia.co.za/lasix-tramadol/>non fda tramadol</a></li> <li><a href=http://centuryauctiongroup.com/norvasc-ultram/>monograph ultram</a></li> <li><a href=http://www.arbonia.co.za/viagra-prilosec/>sale prilosec</a></li> <li><a href=http://screenninja.com/propecia-ativan/>ativan prescribing info</a></li> <li><a href=http://martinosashland.com/>prove</a></li> <li><a href=http://qualityaerospace.com/valium-cialis/>difference cialis and viagra</a></li> <li><a href=http://centuryauctiongroup.com/prednisone-doxycycline/>doxycycline ld50 toxicology</a></li> <li><a href=http://ozarkcarevents.com/valium-viagra/>viagra picture funny</a></li> <li><a href=http://centuryauctiongroup.com/prilosec-elavil/>elavil and trazadone interactions</a></li> <li><a href=http://oshonisarga.com/phentermine-prilosec/>prilosec otc victory of a lifetime</a></li> <li><a href=http://oshonisarga.com/propecia-flagyl/>flagyl malignant wound odor control</a></li> <li><a href=http://www.liferaft.com/q1/dock/blog1/>incentive</a></li> <li><a href=http://www.lpt.co.za/lasix-xanax/>how to get a xanax prescription</a></li> <li><a href=http://www.arbonia.co.za/prednisone-ambien/>ambien board keyword medication sleep</a></li> <li><a href=http://centuryauctiongroup.com/nolvadex-levitra/>levitra gbm</a></li> <li><a href=http://www.birkenmayer.co.za/norvasc-cialis/>mixing cialis and viagra</a></li> <li><a href=http://shadesofpinkblog.com/propecia-prozac/>prozac alcohol hepatotoxicity</a></li> <li><a href=http://www.rocketscientistdad.com/>mesquite</a></li> <li><a href=http://qualityaerospace.com/vicodin-flagyl/>flagyl or metronidazole</a></li> <li><a href=http://centuryauctiongroup.com/lasix-doxycycline/>glands penis oral doxycycline</a></li> <li><a href=http://www.birkenmayer.co.za/viagra-doxycycline/>stability aqueous doxycycline</a></li> <li><a href=http://shadesofpinkblog.com/elavil-lipitor/>lipitor and drug interactions</a></li> <li><a href=http://qualityaerospace.com/ambien-prednisone/>humalog and prednisone</a></li> <li><a href=http://poptank.com/soma-phentermine/>phentermine support message board</a></li> <li><a href=http://oshonisarga.com/lipitor-vicodin/>vicodin without presciption</a></li> <li><a href=http://oshonisarga.com/augmentin-lasix/>how to dose lasix</a></li> <li><a href=http://poptank.com/soma-vicodin/>vicodin no prescription cod overnight delivery</a></li> <li><a href=http://shadesofpinkblog.com/levitra-nolvadex/>nihfi ad bulgaria nolvadex</a></li> <li><a href=http://www.arbonia.co.za/prednisone-elavil/>elavil for dogs</a></li> <li><a href=http://poptank.com/flagyl-ambien/>buy ambien on line usa</a></li> <li><a href=http://www.lpt.co.za/prednisone-soma/>soma internet pharmacies</a></li> <li><a href=http://centuryauctiongroup.com/xanax-propecia/>propecia cause oily skin</a></li> <li><a href=http://screenninja.com/phentermine-augmentin/>augmentin dosing for otitis media</a></li>  <li><a href=http://www.arbonia.co.za/augmentin-cialis/>cost compare vaiagra cialis levitra</a></li> <li><a href=http://screenninja.com/augmentin-cialis/>directions on using cialis</a></li> <li><a href=http://oshonisarga.com/norvasc-tramadol/>medication called tramadol 50mgs tablet s</a></li> <li><a href=http://centuryauctiongroup.com/propecia-bactrim/>pcp prophylaxis bactrim</a></li> <li><a href=http://oshonisarga.com/cialis-doxycycline/>doxycycline hyclate capsule</a></li> <li><a href=http://qualityaerospace.com/ativan-flagyl/>flagyl doseage for a puppy</a></li> <li><a href=http://shadesofpinkblog.com/viagra-doxycycline/>h pylori treatment with doxycycline</a></li> <li><a href=http://www.eurorakeback.com/>alliant</a></li> <li><a href=http://drwang.wwwys.org/>fenders</a></li> <li><a href=http://poptank.com/tramadol-doxycycline/>doxycycline clamidia</a></li> <li><a href=http://shadesofpinkblog.com/prilosec-prilosec/>does prilosec heal ulsers</a></li> <li><a href=http://screenninja.com/doxycycline-levitra/>buy levitra without prescription</a></li> <li><a href=http://poptank.com/nolvadex-ativan/>maximum dosage ativan</a></li> <li><a href=http://screenninja.com/xanax-xanax/>xanax take as needed</a></li> <li><a href=http://oshonisarga.com/flagyl-lasix/>lasix washout</a></li> <li><a href=http://screenninja.com/lipitor-lasix/>lasix without prescription</a></li> <li><a href=http://meta-alliance.com/blog/>outside</a></li> <li><a href=http://poptank.com/elavil-lipitor/>atorvastatin atorvastatina lipitor zarator</a></li> <li><a href=http://centuryauctiongroup.com/xanax-doxycycline/>prescribed doxycycline for acne</a></li> <li><a href=http://www.nccdoc.com/>tongues</a></li> <li><a href=http://www.lpt.co.za/tramadol-augmentin/>pharmacokinetics of augmentin</a></li> <li><a href=http://poptank.com/cialis-cialis/>facts about cialis</a></li> <li><a href=http://oshonisarga.com/viagra-ultram/>ultram pills</a></li> <li><a href=http://centuryauctiongroup.com/norvasc-doxycycline/>doxycycline for complicated gonorrhea</a></li> <li><a href=http://masterpickupartist.com/>releases</a></li> <li><a href=http://www.birkenmayer.co.za/nolvadex-prilosec/>prilosec and mallox</a></li> <li><a href=http://ozarkcarevents.com/elavil-prilosec/>effects prevacid prilosec side</a></li> <li><a href=http://oshonisarga.com/prednisone-propecia/>propecia finasteride side effects</a></li> <li><a href=http://www.lpt.co.za/lasix-elavil/>elavil and its efficiency</a></li> <li><a href=http://corrugateddrainpipe.com/>anon</a></li> <li><a href=http://www.lpt.co.za/nolvadex-prozac/>prozac and laxatives</a></li> <li><a href=http://www.lpt.co.za/propecia-lipitor/>lipitor actin ab</a></li> <li><a href=http://ozarkcarevents.com/ultram-elavil/>elavil withdrawal symptom</a></li> <li><a href=http://qualityaerospace.com/doxycycline-bactrim/>order bactrim</a></li> <li><a href=http://www.arbonia.co.za/prozac-zithromax/>zithromax side effects dry mouth</a></li> <li><a href=http://qualityaerospace.com/soma-doxycycline/>doxycycline esophagas</a></li> <li><a href=http://freeviblog.com/>wheelchair</a></li> <li><a href=http://www.biocow.com/blog/>stones</a></li> <li><a href=http://www.arbonia.co.za/tramadol-elavil/>elavil and clinical trials</a></li> <li><a href=http://www.arbonia.co.za/norvasc-bactrim/>bactrim pneumonia pcp kidney</a></li> <li><a href=http://oshonisarga.com/vicodin-soma/>maximum soma dose</a></li> <li><a href=http://www.arbonia.co.za/norvasc-ativan/>ativan taken with b vitamins</a></li> <li><a href=http://qualityaerospace.com/ambien-ultram/>opiate alternative ultram</a></li> <li><a href=http://shadesofpinkblog.com/prozac-phentermine/>online overnight phentermine tenuate</a></li> <li><a href=http://www.bobspolitics.com/>cartridges</a></li> <li><a href=http://s96940.gridserver.com/>finders</a></li> <li><a href=http://shadesofpinkblog.com/viagra-propecia/>6generic propecia effective as propecia</a></li> <li><a href=http://shadesofpinkblog.com/flagyl-vicodin/>buy large quantity vicodin</a></li> <li><a href=http://beltconveyor.co.in/>sender</a></li> <li><a href=http://oshonisarga.com/elavil-valium/>generic valium</a></li> <li><a href=http://www.birkenmayer.co.za/vicodin-ambien/>ambien generic pills order free</a></li> <li><a href=http://www.birkenmayer.co.za/tramadol-prilosec/>treat heartburn with prilosec</a></li> <li><a href=http://centuryauctiongroup.com/doxycycline-prednisone/>prednisone and heart disease</a></li> <li><a href=http://carefreepoweryoga.com/>gameshark</a></li> <li><a href=http://www.arbonia.co.za/prozac-zithromax/>zithromax strep throat</a></li> <li><a href=http://www.lpt.co.za/prednisone-vicodin/>free free vicodin no prescription online</a></li> <li><a href=http://qualityaerospace.com/cialis-phentermine/>phentermine com obesity risks</a></li> <li><a href=http://screenninja.com/norvasc-viagra/>viagra alternative research</a></li> <li><a href=http://oshonisarga.com/prednisone-elavil/>elavil nortriptyline</a></li> <li><a href=http://screenninja.com/zoloft-doxycycline/>doxycycline for rosecea</a></li> <li><a href=http://screenninja.com/prilosec-propecia/>do generic propecia work</a></li> <li><a href=http://ozarkcarevents.com/nolvadex-lipitor/>business week lipitor</a></li> </div> <!-- linksancx -->

