<?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>mysql Archives - BinaryTides</title>
	<atom:link href="https://www.binarytides.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.binarytides.com/tag/mysql/</link>
	<description>News, Technology, Entertainment and more</description>
	<lastBuildDate>Tue, 14 Nov 2023 09:31:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>Mysql autoincrement column that resets every month</title>
		<link>https://www.binarytides.com/mysql-autoincrement-column-that-resets-every-month/</link>
					<comments>https://www.binarytides.com/mysql-autoincrement-column-that-resets-every-month/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sat, 22 Oct 2011 10:17:20 +0000</pubDate>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=558</guid>

					<description><![CDATA[<p>The autoincrement feature in mysql allows us to create numeric fields that automatically increment by 1 for every row inserted. It does it atomically so we don't have to worry about any duplicates or collision. However, there are situations when we need an autoincrement field to reset at regular intervals like every month or so.... <span class="read-more"><a href="https://www.binarytides.com/mysql-autoincrement-column-that-resets-every-month/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/mysql-autoincrement-column-that-resets-every-month/">Mysql autoincrement column that resets every month</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/mysql-autoincrement-column-that-resets-every-month/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to List foreign keys in Mysql</title>
		<link>https://www.binarytides.com/list-foreign-keys-in-mysql/</link>
					<comments>https://www.binarytides.com/list-foreign-keys-in-mysql/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sat, 05 Sep 2009 16:00:46 +0000</pubDate>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[web development]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=195</guid>

					<description><![CDATA[<p>information_schema The following query will list out the foreign keys in mysql. It finds it out from the information_schema database. select concat(table_name, &#039;.&#039;, column_name) as &#039;foreign key&#039;, concat(referenced_table_name, &#039;.&#039;, referenced_column_name) as &#039;references&#039; from information_schema.key_column_usage where referenced_table_name is not null; The output is a clean table listing out all foreign keys from all databases +-----------------------+-------------+ &#124;... <span class="read-more"><a href="https://www.binarytides.com/list-foreign-keys-in-mysql/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/list-foreign-keys-in-mysql/">How to List foreign keys in Mysql</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/list-foreign-keys-in-mysql/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>Create foreign key using Phpmyadmin</title>
		<link>https://www.binarytides.com/create-foreign-key-phpmyadmin/</link>
					<comments>https://www.binarytides.com/create-foreign-key-phpmyadmin/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 25 Aug 2009 12:03:01 +0000</pubDate>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mysql]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=192</guid>

					<description><![CDATA[<p>The innodb storage engine supports foreign keys in Mysql. To create foreign keys in phpmyadmin : 1. Convert both tables into innodb, if they are not already. 2. View the structure of the table which will have a foreign key. Make the referencing field an INDEX. 3. Now come back to structure view and click... <span class="read-more"><a href="https://www.binarytides.com/create-foreign-key-phpmyadmin/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/create-foreign-key-phpmyadmin/">Create foreign key using Phpmyadmin</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/create-foreign-key-phpmyadmin/feed/</wfw:commentRss>
			<slash:comments>26</slash:comments>
		
		
			</item>
		<item>
		<title>Import mysql dump files with view definer and sql security</title>
		<link>https://www.binarytides.com/mysql-view-definer-and-sql-security/</link>
					<comments>https://www.binarytides.com/mysql-view-definer-and-sql-security/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sat, 22 Aug 2009 11:08:58 +0000</pubDate>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[web development]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=187</guid>

					<description><![CDATA[<p>Views and mysqldump A little back I tried to backup a database from my webhost and restore it on my localhost mysql. It had a few views. The import of the sql file seemed to work fine. But on accessing the views in phpmyadmin mysql gave the error : #1449 - There is no &#039;projects&#039;@&#039;localhost&#039;... <span class="read-more"><a href="https://www.binarytides.com/mysql-view-definer-and-sql-security/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/mysql-view-definer-and-sql-security/">Import mysql dump files with view definer and sql security</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/mysql-view-definer-and-sql-security/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Restore Mysql Database from a sql or zip file using PHP</title>
		<link>https://www.binarytides.com/restore-mysql-database-from-a-sql-or-zip-file-using-php/</link>
					<comments>https://www.binarytides.com/restore-mysql-database-from-a-sql-or-zip-file-using-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Fri, 01 May 2009 06:40:00 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=54</guid>

					<description><![CDATA[<p>In a previous post we learnt how to inside php. In this example the same zip file would be used to restore the database. Code // Function to restore from a file function restore($path) { $f = fopen(&#039;restore/temp.sql&#039; , &#039;w+&#039;); if(!$f) { echo &#38;quot;Error While Restoring Database&#38;quot;; return; } $zip = new ZipArchive(); if ($zip-&#38;gt;open($path)... <span class="read-more"><a href="https://www.binarytides.com/restore-mysql-database-from-a-sql-or-zip-file-using-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/restore-mysql-database-from-a-sql-or-zip-file-using-php/">Restore Mysql Database from a sql or zip file using PHP</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/restore-mysql-database-from-a-sql-or-zip-file-using-php/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Backup mysql database with php and zip it</title>
		<link>https://www.binarytides.com/backup-mysql-database-with-php-and-zip-it/</link>
					<comments>https://www.binarytides.com/backup-mysql-database-with-php-and-zip-it/#respond</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Fri, 01 May 2009 06:29:00 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=53</guid>

					<description><![CDATA[<p>Many php applications prefer to backup the mysql database from within the application and save it as an archive. The mysqldump commandline utility can be used to perform this function of backing up a mysql database as sql file. The command would be like this : mysqldump --user=$username --password=$password --opt $db_name &#62; $dir/backup.sql The above... <span class="read-more"><a href="https://www.binarytides.com/backup-mysql-database-with-php-and-zip-it/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/backup-mysql-database-with-php-and-zip-it/">Backup mysql database with php and zip it</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/backup-mysql-database-with-php-and-zip-it/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
