<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://dev.peirmost.ifx.uab.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tikenn</id>
	<title>Pathology Education Instructional Resource - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://dev.peirmost.ifx.uab.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tikenn"/>
	<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/wiki/Special:Contributions/Tikenn"/>
	<updated>2026-04-03T17:17:16Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Network&amp;diff=3299</id>
		<title>This Is Your Brain On Informatics: Network</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Network&amp;diff=3299"/>
		<updated>2014-11-17T06:58:01Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* Using a Static IP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Possibly the most important aspect to computers: the internet (or more broadly, the network).  Here are some guidelines to setting up networks on Linux machines with special sections for the virtual machine controlled by [https://www.virtualbox.org/ VirtualBox].&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
This first item of note is the location of the file that names the network connections in Linux.  This file can be found [[This Is Your Brain On Informatics: Common Pathnames|here]] under the network section.  Upon being opened the file should show something similar to this (# indicates a comment):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# The loopback network interface&lt;br /&gt;
auto lo&lt;br /&gt;
iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
# The primary network interface&lt;br /&gt;
auto eth0&lt;br /&gt;
iface eth0 inet dhcp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The networks shown here are the basic networks that will allow the machine to connect to the internet.  If this is a regular computer (not a virtual machine), this file should be similar to what is above meaning that it is already completely setup for internet connection and ssh purposes.&lt;br /&gt;
&lt;br /&gt;
Notice here that the eth0 network has &amp;quot;dhcp&amp;quot; (dynamic host configuration protocol) at the end of the final line.  This causes the IP address of this network to be dynamically acquired (meaning that the IP address will be changed frequently) rather than statically set.  Below is a discussion of how to set up each.&lt;br /&gt;
&lt;br /&gt;
== Adding a network ==&lt;br /&gt;
This step should be taken care of if it is a regular computer; however it is very necessary for a virtual machine.&lt;br /&gt;
&lt;br /&gt;
=== Using a Dynamically Acquired IP ===&lt;br /&gt;
This method will cause the network to randomly (within reason of course) select an IP address each time the virtual box is disconnected from an ISP (Internet Service Provider) or another virtual machine is created.&lt;br /&gt;
&lt;br /&gt;
'''Vitual Machine Note'''&amp;lt;br /&amp;gt;&lt;br /&gt;
This step is critical to allowing the virtual machine to interact with the outside world and not have a host only network. The steps below are for a virtual box, but can be applied to any other network setup in Linux.&lt;br /&gt;
&lt;br /&gt;
# Access the above pathname with pico (pico /etc/network/interfaces)&lt;br /&gt;
# Below the first network (indicated by eth0), copy the first network, replacing eth0 with eth1&lt;br /&gt;
#::::auto eth1&lt;br /&gt;
#::::iface eth1 inet dhcp&lt;br /&gt;
# Reboot the machine&lt;br /&gt;
# Determine the new IP address of the eth1 network by one of the following&lt;br /&gt;
## After logging in, check the IP next to the eth1 network&lt;br /&gt;
## Type &amp;quot;ifconfig&amp;quot; into the command line and check the IP next to the &amp;quot;inet addr:&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Using a Static IP ===&lt;br /&gt;
This can be used if it is necessary to prevent the IP address from changing (e.g. a home server or you're just sick of having to adjust the IP for every program that connects to the virtual machine each time it changes).  Below is an example of how it is set.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This is the network that allows communication with the outside world&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet static&lt;br /&gt;
        address   192.168.56.23&lt;br /&gt;
        netmask   255.255.255.0&lt;br /&gt;
        network   192.168.56.0&lt;br /&gt;
        broadcast 192.168.56.255&lt;br /&gt;
        gateway   192.168.56.1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The key component of this is the word ''static'' at the end of the line beginning with ''iface'', forcing the IP address to bet set statically as determined by the user.  Each of the components of the network must now be set individually.  The address is the network address and can be set to anything.  Typically only the last number is changed from what is currently set. The current IP address can be determined by using the Linux command [[This Is Your Brain On Informatics: Linux Commands|''ifconfig'']] and looking at the ''inet addr'' under the appropriate network.  ''Bcast'' will determine the ''broadcast'' and ''netmask'' will determine the Mask.  As long as only the final number of the IP address is changed, then these can be used as shown above.  &lt;br /&gt;
&lt;br /&gt;
The final numbers (''network'' and ''broadcast'') can be set by simply using 0 and 255 respectively for the last number.  Finally, the ''gateway'' is the IP address of the router used to access the internet.  This can be accessed from the router settings.  The ''gateway'' should NOT be set for a '''Virtual Machine''' through VirtualBox.  It should only be set for an actual computer.  The gateway is typically the same first three numbers as the IP address with a ''1'' as the last number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Network&amp;diff=3298</id>
		<title>This Is Your Brain On Informatics: Network</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Network&amp;diff=3298"/>
		<updated>2014-11-17T06:57:22Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* Using a Static IP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Possibly the most important aspect to computers: the internet (or more broadly, the network).  Here are some guidelines to setting up networks on Linux machines with special sections for the virtual machine controlled by [https://www.virtualbox.org/ VirtualBox].&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
This first item of note is the location of the file that names the network connections in Linux.  This file can be found [[This Is Your Brain On Informatics: Common Pathnames|here]] under the network section.  Upon being opened the file should show something similar to this (# indicates a comment):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# The loopback network interface&lt;br /&gt;
auto lo&lt;br /&gt;
iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
# The primary network interface&lt;br /&gt;
auto eth0&lt;br /&gt;
iface eth0 inet dhcp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The networks shown here are the basic networks that will allow the machine to connect to the internet.  If this is a regular computer (not a virtual machine), this file should be similar to what is above meaning that it is already completely setup for internet connection and ssh purposes.&lt;br /&gt;
&lt;br /&gt;
Notice here that the eth0 network has &amp;quot;dhcp&amp;quot; (dynamic host configuration protocol) at the end of the final line.  This causes the IP address of this network to be dynamically acquired (meaning that the IP address will be changed frequently) rather than statically set.  Below is a discussion of how to set up each.&lt;br /&gt;
&lt;br /&gt;
== Adding a network ==&lt;br /&gt;
This step should be taken care of if it is a regular computer; however it is very necessary for a virtual machine.&lt;br /&gt;
&lt;br /&gt;
=== Using a Dynamically Acquired IP ===&lt;br /&gt;
This method will cause the network to randomly (within reason of course) select an IP address each time the virtual box is disconnected from an ISP (Internet Service Provider) or another virtual machine is created.&lt;br /&gt;
&lt;br /&gt;
'''Vitual Machine Note'''&amp;lt;br /&amp;gt;&lt;br /&gt;
This step is critical to allowing the virtual machine to interact with the outside world and not have a host only network. The steps below are for a virtual box, but can be applied to any other network setup in Linux.&lt;br /&gt;
&lt;br /&gt;
# Access the above pathname with pico (pico /etc/network/interfaces)&lt;br /&gt;
# Below the first network (indicated by eth0), copy the first network, replacing eth0 with eth1&lt;br /&gt;
#::::auto eth1&lt;br /&gt;
#::::iface eth1 inet dhcp&lt;br /&gt;
# Reboot the machine&lt;br /&gt;
# Determine the new IP address of the eth1 network by one of the following&lt;br /&gt;
## After logging in, check the IP next to the eth1 network&lt;br /&gt;
## Type &amp;quot;ifconfig&amp;quot; into the command line and check the IP next to the &amp;quot;inet addr:&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Using a Static IP ===&lt;br /&gt;
This can be used if it is necessary to prevent the IP address from changing (e.g. a home server or you're just sick of having to adjust the IP for every program that connects to the virtual machine each time it changes).  Below is an example of how it is set.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This is the network that allows communication with the outside world&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet static&lt;br /&gt;
        address   192.168.56.23&lt;br /&gt;
        netmask   255.255.255.0&lt;br /&gt;
        network   192.168.56.0&lt;br /&gt;
        broadcast 192.168.56.255&lt;br /&gt;
        gateway   192.168.56.1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The key component of this is the word ''static'' at the end of the line beginning with ''iface'', forcing the IP address to bet set statically as determined by the user.  Each of the components of the network must now be set individually.  The address is the network address and can be set to anything.  Typically only the last number is changed from what is currently set. The current IP address can be determined by using the Linux command [[This Is Your Brain On Informatics: Linux Commands|''ifconfig'']] and looking at the ''inet addr'' under the appropriate network.  ''Bcast'' will determine the broadcast and ''netmask'' will determine the Mask.  As long as only the final number of the IP address is changed, then these can be used as shown above.  &lt;br /&gt;
&lt;br /&gt;
The final numbers (''network'' and ''broadcast'') can be set by simply using 0 and 255 respectively for the last number.  Finally, the ''gateway'' is the IP address of the router used to access the internet.  This can be accessed from the router settings.  The ''gateway'' should NOT be set for a '''Virtual Machine''' through VirtualBox.  It should only be set for an actual computer.  The gateway is typically the same first three numbers as the IP address with a ''1'' as the last number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Network&amp;diff=3297</id>
		<title>This Is Your Brain On Informatics: Network</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Network&amp;diff=3297"/>
		<updated>2014-11-17T06:57:03Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* Getting Started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Possibly the most important aspect to computers: the internet (or more broadly, the network).  Here are some guidelines to setting up networks on Linux machines with special sections for the virtual machine controlled by [https://www.virtualbox.org/ VirtualBox].&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
This first item of note is the location of the file that names the network connections in Linux.  This file can be found [[This Is Your Brain On Informatics: Common Pathnames|here]] under the network section.  Upon being opened the file should show something similar to this (# indicates a comment):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# The loopback network interface&lt;br /&gt;
auto lo&lt;br /&gt;
iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
# The primary network interface&lt;br /&gt;
auto eth0&lt;br /&gt;
iface eth0 inet dhcp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The networks shown here are the basic networks that will allow the machine to connect to the internet.  If this is a regular computer (not a virtual machine), this file should be similar to what is above meaning that it is already completely setup for internet connection and ssh purposes.&lt;br /&gt;
&lt;br /&gt;
Notice here that the eth0 network has &amp;quot;dhcp&amp;quot; (dynamic host configuration protocol) at the end of the final line.  This causes the IP address of this network to be dynamically acquired (meaning that the IP address will be changed frequently) rather than statically set.  Below is a discussion of how to set up each.&lt;br /&gt;
&lt;br /&gt;
== Adding a network ==&lt;br /&gt;
This step should be taken care of if it is a regular computer; however it is very necessary for a virtual machine.&lt;br /&gt;
&lt;br /&gt;
=== Using a Dynamically Acquired IP ===&lt;br /&gt;
This method will cause the network to randomly (within reason of course) select an IP address each time the virtual box is disconnected from an ISP (Internet Service Provider) or another virtual machine is created.&lt;br /&gt;
&lt;br /&gt;
'''Vitual Machine Note'''&amp;lt;br /&amp;gt;&lt;br /&gt;
This step is critical to allowing the virtual machine to interact with the outside world and not have a host only network. The steps below are for a virtual box, but can be applied to any other network setup in Linux.&lt;br /&gt;
&lt;br /&gt;
# Access the above pathname with pico (pico /etc/network/interfaces)&lt;br /&gt;
# Below the first network (indicated by eth0), copy the first network, replacing eth0 with eth1&lt;br /&gt;
#::::auto eth1&lt;br /&gt;
#::::iface eth1 inet dhcp&lt;br /&gt;
# Reboot the machine&lt;br /&gt;
# Determine the new IP address of the eth1 network by one of the following&lt;br /&gt;
## After logging in, check the IP next to the eth1 network&lt;br /&gt;
## Type &amp;quot;ifconfig&amp;quot; into the command line and check the IP next to the &amp;quot;inet addr:&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Using a Static IP ===&lt;br /&gt;
This can be used if it is necessary to prevent the IP address from changing (e.g. a home server or you're just sick of having to adjust the IP for every program that connects to the virtual machine each time it changes).  Below is an example of how it is set.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# This is the network that allows communication with the outside world&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet static&lt;br /&gt;
        address   192.168.56.23&lt;br /&gt;
        netmask   255.255.255.0&lt;br /&gt;
        network   192.168.56.0&lt;br /&gt;
        broadcast 192.168.56.255&lt;br /&gt;
        gateway   192.168.56.1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The key component of this is the word ''static'' at the end of the line beginning with ''iface'', forcing the IP address to bet set statically as determined by the user.  Each of the components of the network must now be set individually.  The address is the network address and can be set to anything.  Typically only the last number is changed from what is currently set. The current IP address can be determined by using the Linux command [[This Is Your Brain On Informatics: Linux Commands|''ifconfig'']] and looking at the ''inet addr'' under the appropriate network.  ''Bcast'' will determine the broadcast and ''netmask' will determine the Mask.  As long as only the final number of the IP address is changed, then these can be used as shown above.  &lt;br /&gt;
&lt;br /&gt;
The final numbers (''network'' and ''broadcast'') can be set by simply using 0 and 255 respectively for the last number.  Finally, the ''gateway'' is the IP address of the router used to access the internet.  This can be accessed from the router settings.  The ''gateway'' should NOT be set for a '''Virtual Machine''' through VirtualBox.  It should only be set for an actual computer.  The gateway is typically the same first three numbers as the IP address with a ''1'' as the last number.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_DenyHosts&amp;diff=2908</id>
		<title>This Is Your Brain On Informatics: DenyHosts</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_DenyHosts&amp;diff=2908"/>
		<updated>2014-04-17T02:31:59Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* hosts.allow */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DenyHosts is a firewall that is built for the Linux OS and is probably the easiest way to secure a server.  This program prevents unauthorized access to the server by blocking an IP address after a set number of unsuccessful attempts have been made.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installing DenyHosts ==&lt;br /&gt;
Currently, as of writing this wiki page (12/01/13), the easiest way to install DenyHosts is to use aptitude by typing in the following command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
aptitude install denyhosts&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Important Files ==&lt;br /&gt;
There are two important files in DenyHosts in order to make sure that it runs properly: ''hosts.deny'' and ''hosts.allow''.  The location of both of these files can be found in [[This Is Your Brain On Informatics: Common Pathnames|common pathnames]].&lt;br /&gt;
&lt;br /&gt;
=== hosts.deny ===&lt;br /&gt;
This file stores the IP addresses that have been denied access to the server through ssh.  If the server is active, this file will fill up rapidly.  The importance of this file lies in the fact that it will also deny your IP address if you attempt to unsuccessfully log into the server more than the set number of times (this can also occur if DenyHosts is glitching).  If this is the case, open the file on the actual server (through the virtual machine if that is how the server was built) and delete the appropriate IP address.  Then reboot the machine.&lt;br /&gt;
&lt;br /&gt;
=== hosts.allow ===&lt;br /&gt;
This file gives permanent ssh access to IP addresses listed inside by preventing them from being placed in the hosts.deny file.  This file can be used if DenyHosts is glitching and constantly placing your IP address in hosts.deny.  The syntax for permanently allowing an IP address to ssh into the server is shown below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ALL: 192.168.56.23 (or whatever your IP address is)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_DenyHosts&amp;diff=2907</id>
		<title>This Is Your Brain On Informatics: DenyHosts</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_DenyHosts&amp;diff=2907"/>
		<updated>2014-04-17T02:28:45Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DenyHosts is a firewall that is built for the Linux OS and is probably the easiest way to secure a server.  This program prevents unauthorized access to the server by blocking an IP address after a set number of unsuccessful attempts have been made.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installing DenyHosts ==&lt;br /&gt;
Currently, as of writing this wiki page (12/01/13), the easiest way to install DenyHosts is to use aptitude by typing in the following command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
aptitude install denyhosts&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Important Files ==&lt;br /&gt;
There are two important files in DenyHosts in order to make sure that it runs properly: ''hosts.deny'' and ''hosts.allow''.  The location of both of these files can be found in [[This Is Your Brain On Informatics: Common Pathnames|common pathnames]].&lt;br /&gt;
&lt;br /&gt;
=== hosts.deny ===&lt;br /&gt;
This file stores the IP addresses that have been denied access to the server through ssh.  If the server is active, this file will fill up rapidly.  The importance of this file lies in the fact that it will also deny your IP address if you attempt to unsuccessfully log into the server more than the set number of times (this can also occur if DenyHosts is glitching).  If this is the case, open the file on the actual server (through the virtual machine if that is how the server was built) and delete the appropriate IP address.  Then reboot the machine.&lt;br /&gt;
&lt;br /&gt;
=== hosts.allow ===&lt;br /&gt;
This file gives permanent access to a server so that recorded IP addresses in this file will not be placed in the hosts.deny file.  This file can be used if DenyHosts is glitching and constantly placing your IP address in hosts.deny.  The syntax for permanently allowing an IP address to ssh into the server is shown below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ALL: 192.168.56.23 (or whatever your IP address is)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2906</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2906"/>
		<updated>2014-04-12T04:43:30Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''` (&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `''table''` (&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;VALUES (''value1, value2, value3,...''); &amp;lt;br&amp;gt;&amp;lt;br&amp;gt; INSERT INTO ''table_name'' (''column1, column2, column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1, value2, value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1, column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2894</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2894"/>
		<updated>2014-03-28T03:43:42Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* MariaDB SQL Commands */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''` (&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `''table''` (&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;VALUES (''value1, value2, value3,...''); &amp;lt;br&amp;gt;&amp;lt;br&amp;gt; INSERT INTO ''table_name'' (''column1, column2, column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1, value2, value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1, column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2893</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2893"/>
		<updated>2014-03-28T03:40:41Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''` (&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `''table''` (&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;VALUES (''value1, value2, value3,...''); &amp;lt;br&amp;gt;&amp;lt;br&amp;gt; INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1, value2, value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1, column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2892</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2892"/>
		<updated>2014-03-27T01:49:58Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''` VALUES(&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `''table''`VALUES(&amp;lt;br /&amp;gt;`''column_name1''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;`''column_name2''` ''DATA_TYPE'',&amp;lt;br /&amp;gt;''etc.''&amp;lt;br /&amp;gt;);&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2891</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2891"/>
		<updated>2014-03-27T01:47:44Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''` VALUES(`''column_name1''` ''DATA_TYPE'', `''column_name2''` ''DATA_TYPE'', ''etc.'');&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `''table''` VALUES(`''column_name1''` ''DATA_TYPE'', `''column_name2''` ''DATA_TYPE'', ''etc.'');&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2890</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2890"/>
		<updated>2014-03-27T01:44:46Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2889</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2889"/>
		<updated>2014-03-27T01:41:37Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `[table]`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2888</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2888"/>
		<updated>2014-03-27T01:41:11Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `[table]`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2887</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2887"/>
		<updated>2014-03-27T01:40:14Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `[table]`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2886</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2886"/>
		<updated>2014-03-27T01:39:57Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `[table]`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*Commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2885</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2885"/>
		<updated>2014-03-27T01:38:50Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
The language of Maria DB.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | mysql -u ''username'' -p&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AS ''var''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AUTO_INCREMENT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; |&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | AVG()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | BIGINT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CHAR&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TABLE `''table''`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | CREATE TEMPORARY TABLE `[table]`&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | DATE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | FROM&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INSERT INTO ''table_name''&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INT &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | INTO &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | LIMIT # &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MAX() &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | MIN()&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | PRIMARY KEY&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | SELECT&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UNSIGNED&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | USE ''database''&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | VARCHAR(#)&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | WHERE&lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | &lt;br /&gt;
| style=&amp;quot;padding: 10px&amp;quot; | Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*Commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2884</id>
		<title>This Is Your Brain On Informatics: MariaDB SQL Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_MariaDB_SQL_Commands&amp;diff=2884"/>
		<updated>2014-03-27T01:34:16Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== MariaDB SQL Commands ==&lt;br /&gt;
The language of Maria DB.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Common Commands in SQL&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | Boolean Operators&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | AND&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | OR&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align = &amp;quot;center&amp;quot; | NOT&lt;br /&gt;
|-&lt;br /&gt;
! Command*&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| mysql&lt;br /&gt;
| mysql -u ''username'' -p&lt;br /&gt;
| Command line command where ''username'' should be replaced by the user's account name&lt;br /&gt;
|-&lt;br /&gt;
| `''table''`&lt;br /&gt;
| &lt;br /&gt;
| Syntax for indicating a table&lt;br /&gt;
|-&lt;br /&gt;
| AS ''var''&lt;br /&gt;
|&lt;br /&gt;
| Sets an output to a variable &lt;br /&gt;
|-&lt;br /&gt;
| AUTO_INCREMENT &lt;br /&gt;
|&lt;br /&gt;
| Automatically adds +1 to an entry for a column for each successive entry&lt;br /&gt;
|-&lt;br /&gt;
| AVG()&lt;br /&gt;
| &lt;br /&gt;
| Gives an average of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| BIGINT&lt;br /&gt;
| &lt;br /&gt;
| 64-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| CHAR&lt;br /&gt;
| &lt;br /&gt;
| Assigns a character variable (allows ONLY 1 character)&lt;br /&gt;
|-&lt;br /&gt;
| CREATE TABLE `''table''`&lt;br /&gt;
| &lt;br /&gt;
| Creates a table of the given name with the properly input variable (see below)&lt;br /&gt;
|-&lt;br /&gt;
| CREATE TEMPORARY TABLE `[table]`&lt;br /&gt;
| &lt;br /&gt;
| Creates a temporary table of the given name&lt;br /&gt;
|-&lt;br /&gt;
| DATE&lt;br /&gt;
| &lt;br /&gt;
| Assigns a date variable of the form 00-00-0000&lt;br /&gt;
|-&lt;br /&gt;
| FROM&lt;br /&gt;
| &lt;br /&gt;
| Denotes which table SELECT pulls the columns from (e.g. SELECT [col1],[col2] FROM `''table''`&lt;br /&gt;
|-&lt;br /&gt;
| INSERT&lt;br /&gt;
| INSERT INTO ''table_name''&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...'');&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;INSERT INTO ''table_name'' (''column1,column2,column3,...'')&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;VALUES (''value1,value2,value3,...''); -- specifies the columns the values go into &lt;br /&gt;
| Used with INTO to insert new data entries into the specified columns&lt;br /&gt;
|-&lt;br /&gt;
| INT &lt;br /&gt;
| &lt;br /&gt;
| 32-bit integer&lt;br /&gt;
|-&lt;br /&gt;
| INTO &lt;br /&gt;
| SELECT * or ''column_name(s)''&amp;lt;br /&amp;gt;INTO ''newtable'' [IN ''externaldb'']&amp;lt;br /&amp;gt;FROM ''table1'';&lt;br /&gt;
| Used with SELECT command to copy ''column_names'' from ''table1'' into ''newtable''&lt;br /&gt;
|-&lt;br /&gt;
| LIMIT # &lt;br /&gt;
| &lt;br /&gt;
| Limits to the top # number of entries (not necessarily by rank)&lt;br /&gt;
|-&lt;br /&gt;
| MAX() &lt;br /&gt;
| &lt;br /&gt;
| Gives the maximum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| MIN()&lt;br /&gt;
| &lt;br /&gt;
| Gives the minimum of the values in the indicated column&lt;br /&gt;
|-&lt;br /&gt;
| PRIMARY KEY&lt;br /&gt;
| &lt;br /&gt;
| Indicates which variable will differentiate each data entry&lt;br /&gt;
|-&lt;br /&gt;
| SELECT&lt;br /&gt;
| &lt;br /&gt;
| Selects columns from a database for analysis&lt;br /&gt;
|-&lt;br /&gt;
| UNSIGNED&lt;br /&gt;
| &lt;br /&gt;
| only allows positive integers or float values, always assigned after BIGINT or INT value&lt;br /&gt;
|-&lt;br /&gt;
| UPDATE &lt;br /&gt;
| UPDATE ''table_name''&amp;lt;br /&amp;gt;SET ''column1=value1,column2=value2,...''&amp;lt;br /&amp;gt;WHERE ''some_column''=''some_value;''&lt;br /&gt;
| Changes ''column1'' to ''value1'' based on the WHERE statement (use something unique to update only one row)&lt;br /&gt;
|- &lt;br /&gt;
| USE ''database''&lt;br /&gt;
| &lt;br /&gt;
| Selects database for manipulation and analysis&lt;br /&gt;
|-&lt;br /&gt;
| VARCHAR(#)&lt;br /&gt;
| &lt;br /&gt;
| Assigns a character array variable of length #&lt;br /&gt;
|-&lt;br /&gt;
| WHERE&lt;br /&gt;
| &lt;br /&gt;
| Limits the available values SELECT can pull from each column based on a logical statement (e.g. WHERE ''col1'' &amp;lt; 10)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*Commands are capitalized by convention.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template: This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Linux_Commands&amp;diff=2883</id>
		<title>This Is Your Brain On Informatics: Linux Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Linux_Commands&amp;diff=2883"/>
		<updated>2014-03-27T00:57:56Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===General Linux Command Info===&lt;br /&gt;
*Almost every single command should have an argument (an input for a function)&lt;br /&gt;
*A filename in Linux refers to both a file's name and a directory's name&lt;br /&gt;
&lt;br /&gt;
===Common Linux Commands===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! style=&amp;quot;padding: 10px;&amp;quot;| Command&lt;br /&gt;
! style=&amp;quot;padding: 10px;&amp;quot;| Syntax&lt;br /&gt;
! style=&amp;quot;padding: 10px;&amp;quot;| Description&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| cat&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| cat ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Display file’s contents to the standard output device (usually your monitor)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| cd&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| cd ''/pathname''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Change to the given directory&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| chmod*&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| chmod ''options'' ''mode'' ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Changes a file's permissions. &lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| chown&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| chown ''private_owner:group_owner'' ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Changes ownership of the file&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| clear&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| clear&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Clears the screen by scrolling (does not delete anything)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| cp&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| cp ''options'' ''source'' ''destination''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Copies a file from the source to the destination&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| find&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| find ''/pathname'' ''string''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Starts at the indicated directory and searches for the string in a filename&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| grep&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| grep ''options'' ''pattern'' ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Searches for the pattern in the file&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ifconfig&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ifconfig&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Displays the current networks available and various information about them&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ll&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ll ''/pathname''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| List Long:  lists the details of the entire directory or file indicated&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ln&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ln ''options'' ''source'' ''destination''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Link:  creates a shortcut.  Use -s for the ''options'' to create a soft link (more capabilities)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ls&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ls ''/pathname''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Lists the files and directories in a given directory&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| man&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| man ''command''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Opens the manual page for the given command&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| mkdir&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| mkdir ''options'' ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Makes a directory at the given location with the given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| mv&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| mv ''options'' ''source'' ''destination''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Moves a file or directory from the source to the destination&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| [[This Is Your Brain On Informatics: Pico|pico]]&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| pico ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Opens the given file in the pico text editor&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| pwd&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| pwd&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Displays the pathname for the current directory&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| rm&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| rm ''options'' ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Removes the given file.  If -rf is used for the options, a directory and its roots will be removed as well&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ssh&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| ssh ''options'' ''user@machine''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Remotely logs into the given machine with the given user name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| sudo&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| sudo ''command''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Allows super user privileges for the given command (requires root password).  sudo su allows login to root&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| tar&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| tar -xzvf ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Extracts files with the extension *.tar.gz or *.tgz&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| touch&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| touch ''filename''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Creates an empty file with given name&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| wget&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| wget ''internet address''&lt;br /&gt;
| style=&amp;quot;padding: 10px;&amp;quot;| Downloads a file from a given internet address&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===*Notes on chmod===&lt;br /&gt;
'''chmod''' has several input options.  Using a &amp;quot;+&amp;quot; and an &amp;quot;r&amp;quot;, &amp;quot;w&amp;quot;, and/or &amp;quot;x&amp;quot; will add read, write, or execute permissions respectively to the given file.  A &amp;quot;-&amp;quot; will take these away.  The other system is a binary system in which there are permissions for the private user, the group, and the public (other) given as 000 000 000 where each set of three 0's equals the private user, group, or public respectively.  The first 0 in each set of 0's is for reading permission, the second for writing, and the third for executing.  Because it is binary 100 000 000 (permission for the private user to read only) will be written as 400 in the command line (after translating the binary to decimal where 100 = 4)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Linux_Commands&amp;diff=2882</id>
		<title>This Is Your Brain On Informatics: Linux Commands</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Linux_Commands&amp;diff=2882"/>
		<updated>2014-03-27T00:46:29Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===General Linux Command Info===&lt;br /&gt;
*Almost every single command should have an argument (an input for a function)&lt;br /&gt;
*A filename in Linux refers to both a file's name and a directory's name&lt;br /&gt;
&lt;br /&gt;
===Common Linux Commands===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;padding: 100&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Command&lt;br /&gt;
! Syntax&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| cat&lt;br /&gt;
| cat ''filename''&lt;br /&gt;
| Display file’s contents to the standard output device (usually your monitor)&lt;br /&gt;
|-&lt;br /&gt;
| cd&lt;br /&gt;
| cd ''/pathname''&lt;br /&gt;
| Change to the given directory&lt;br /&gt;
|-&lt;br /&gt;
| chmod*&lt;br /&gt;
| chmod ''options'' ''mode'' ''filename''&lt;br /&gt;
| Changes a file's permissions. &lt;br /&gt;
|-&lt;br /&gt;
| chown&lt;br /&gt;
| chown ''private_owner:group_owner'' ''filename''&lt;br /&gt;
| Changes ownership of the file&lt;br /&gt;
|-&lt;br /&gt;
| clear&lt;br /&gt;
| clear&lt;br /&gt;
| Clears the screen by scrolling (does not delete anything)&lt;br /&gt;
|-&lt;br /&gt;
| cp&lt;br /&gt;
| cp ''options'' ''source'' ''destination''&lt;br /&gt;
| Copies a file from the source to the destination&lt;br /&gt;
|-&lt;br /&gt;
| find&lt;br /&gt;
| find ''/pathname'' ''string''&lt;br /&gt;
| Starts at the indicated directory and searches for the string in a filename&lt;br /&gt;
|-&lt;br /&gt;
| grep&lt;br /&gt;
| grep ''options'' ''pattern'' ''filename''&lt;br /&gt;
| Searches for the pattern in the file&lt;br /&gt;
|-&lt;br /&gt;
| ifconfig&lt;br /&gt;
| ifconfig&lt;br /&gt;
| Displays the current networks available and various information about them&lt;br /&gt;
|-&lt;br /&gt;
| ll&lt;br /&gt;
| ll ''/pathname''&lt;br /&gt;
| List Long:  lists the details of the entire directory or file indicated&lt;br /&gt;
|-&lt;br /&gt;
| ln&lt;br /&gt;
| ln ''options'' ''source'' ''destination''&lt;br /&gt;
| Link:  creates a shortcut.  Use -s for the ''options'' to create a soft link (more capabilities)&lt;br /&gt;
|-&lt;br /&gt;
| ls&lt;br /&gt;
| ls ''/pathname''&lt;br /&gt;
| Lists the files and directories in a given directory&lt;br /&gt;
|-&lt;br /&gt;
| man&lt;br /&gt;
| man ''command''&lt;br /&gt;
| Opens the manual page for the given command&lt;br /&gt;
|-&lt;br /&gt;
| mkdir&lt;br /&gt;
| mkdir ''options'' ''filename''&lt;br /&gt;
| Makes a directory at the given location with the given name&lt;br /&gt;
|-&lt;br /&gt;
| mv&lt;br /&gt;
| mv ''options'' ''source'' ''destination''&lt;br /&gt;
| Moves a file or directory from the source to the destination&lt;br /&gt;
|-&lt;br /&gt;
| [[This Is Your Brain On Informatics: Pico|pico]]&lt;br /&gt;
| pico ''filename''&lt;br /&gt;
| Opens the given file in the pico text editor&lt;br /&gt;
|-&lt;br /&gt;
| pwd&lt;br /&gt;
| pwd&lt;br /&gt;
| Displays the pathname for the current directory&lt;br /&gt;
|-&lt;br /&gt;
| rm&lt;br /&gt;
| rm ''options'' ''filename''&lt;br /&gt;
| Removes the given file.  If -rf is used for the options, a directory and its roots will be removed as well&lt;br /&gt;
|-&lt;br /&gt;
| ssh&lt;br /&gt;
| ssh ''options'' ''user@machine''&lt;br /&gt;
| Remotely logs into the given machine with the given user name&lt;br /&gt;
|-&lt;br /&gt;
| sudo&lt;br /&gt;
| sudo ''command''&lt;br /&gt;
| Allows super user privileges for the given command (requires root password).  sudo su allows login to root&lt;br /&gt;
|-&lt;br /&gt;
| tar&lt;br /&gt;
| tar -xzvf ''filename''&lt;br /&gt;
| Extracts files with the extension *.tar.gz or *.tgz&lt;br /&gt;
|-&lt;br /&gt;
| touch&lt;br /&gt;
| touch ''filename''&lt;br /&gt;
| Creates an empty file with given name&lt;br /&gt;
|-&lt;br /&gt;
| wget&lt;br /&gt;
| wget ''internet address''&lt;br /&gt;
| Downloads a file from a given internet address&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===*Notes on chmod===&lt;br /&gt;
'''chmod''' has several input options.  Using a &amp;quot;+&amp;quot; and an &amp;quot;r&amp;quot;, &amp;quot;w&amp;quot;, and/or &amp;quot;x&amp;quot; will add read, write, or execute permissions respectively to the given file.  A &amp;quot;-&amp;quot; will take these away.  The other system is a binary system in which there are permissions for the private user, the group, and the public (other) given as 000 000 000 where each set of three 0's equals the private user, group, or public respectively.  The first 0 in each set of 0's is for reading permission, the second for writing, and the third for executing.  Because it is binary 100 000 000 (permission for the private user to read only) will be written as 400 in the command line (after translating the binary to decimal where 100 = 4)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2881</id>
		<title>This Is Your Brain On Informatics</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2881"/>
		<updated>2014-03-27T00:39:56Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
[[File:This Is Your Brain On Infomatics 03182014 Seung.jpg|thumb|250px|[https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] Teaching]]&lt;br /&gt;
&lt;br /&gt;
This class is an amazing course taught by [https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] that gives an excellent background in many of the approaches used to handle &amp;quot;big data&amp;quot; from an informatics stand point (the only way to do it).  This wiki has been developed as a general accessory to the course, including content that was taught in the class and content that might be useful for the final project.&lt;br /&gt;
&lt;br /&gt;
However, this wiki is not just for the class.  It contains much of the basic information of programming to help someone beginning their journey in programming or to serve as a resource along the way.&lt;br /&gt;
&lt;br /&gt;
Below are several pages with content from the class and content that may be useful when continuing on from the class&lt;br /&gt;
&lt;br /&gt;
*[[This Is Your Brain On Informatics: Linux|Linux]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: NGINX|NGINX]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: PHP-FPM|PHP-FPM]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: MariaDB|MariaDB]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Pico|Pico]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Code Examples|Code Examples]]&lt;br /&gt;
&lt;br /&gt;
== Previous Classes ==&lt;br /&gt;
This class has attracted a wide array of students at its inception starting out as a class designed for anyone that is interested in acquiring a foundation in programming.  Take a look [[This Is Your Brain On Informatics: Previous Classes|here]] to see some of the previous classes and who all they consisted of.&lt;br /&gt;
&lt;br /&gt;
== Programming Resources ==&lt;br /&gt;
While this page is a great resource for programming information, there are many others.  Below are some valuable sites for learning to program.&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3schools.com/ w3schools]&lt;br /&gt;
* [http://www.bentobox.io/index.html bento]&lt;br /&gt;
* [http://www.tutorialspoint.com/ Tutorials Point]&lt;br /&gt;
* [http://www.codecademy.com/ Code Academy]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2880</id>
		<title>This Is Your Brain On Informatics: Previous Classes</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2880"/>
		<updated>2014-03-19T23:02:07Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* Second Class (Mar 2014) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== First Class (Oct 2013) ==&lt;br /&gt;
The first class consisted of MSTP students and a PI.  This was the first class at UAB that sparked a movement for the class to begin impacting students around the school.&lt;br /&gt;
&lt;br /&gt;
== Second Class (Mar 2014) == &lt;br /&gt;
The second class was filled with medical students, an MSTP student, a PhD student, pre-dental student, and a pathologist.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Class of March 2014&amp;quot; align=&amp;quot;center&amp;quot; heights=&amp;quot;200px&amp;quot; widths=&amp;quot;300px&amp;quot;&amp;gt;&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(1).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(2).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(3).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(4).jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2879</id>
		<title>This Is Your Brain On Informatics: Previous Classes</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2879"/>
		<updated>2014-03-19T22:07:43Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== First Class (Oct 2013) ==&lt;br /&gt;
The first class consisted of MSTP students and a PI.  This was the first class at UAB that sparked a movement for the class to begin impacting students around the school.&lt;br /&gt;
&lt;br /&gt;
== Second Class (Mar 2014) == &lt;br /&gt;
The second class was filled with medical students, an MSTP student, a PhD student, pre-dental student, and a pathologist.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Class of March 2014&amp;quot; align=&amp;quot;center&amp;quot; heights=&amp;quot;200px&amp;quot; widths=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(1).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(2).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(3).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(4).jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2878</id>
		<title>This Is Your Brain On Informatics</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2878"/>
		<updated>2014-03-19T03:12:36Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
[[File:This Is Your Brain On Infomatics 03182014 Seung.jpg|thumb|250px|[https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] Teaching]]&lt;br /&gt;
&lt;br /&gt;
This class is an amazing course taught by [https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] that gives an excellent background in many of the approaches used to handle &amp;quot;big data&amp;quot; from an informatics stand point (the only way to do it).  This wiki has been developed as a general accessory to the course, including content that was taught in the class and content that might be useful for the final project.&lt;br /&gt;
&lt;br /&gt;
However, this wiki is not just for the class.  It contains much of the basic information of programming to help someone beginning their journey in programming or to serve as a resource along the way.&lt;br /&gt;
&lt;br /&gt;
Below are several pages with content from the class and content that may be useful when continuing on from the class&lt;br /&gt;
&lt;br /&gt;
*[[This Is Your Brain On Informatics: Linux|Linux]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: NGINX|NGINX]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: PHP-FPM|PHP-FPM]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: MariaDB|MariaDB]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Pico|Pico]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Code Examples|Code Examples]]&lt;br /&gt;
&lt;br /&gt;
== Previous Classes ==&lt;br /&gt;
This class has attracted a wide array of students at its inception starting out as a class designed for anyone that is interested in acquiring a foundation in programming.  Take a look [[This Is Your Brain On Informatics: Previous Classes|here]] to see some of the previous classes and who all they consisted of.&lt;br /&gt;
&lt;br /&gt;
== Programming Resources ==&lt;br /&gt;
While this page is a great resource for programming information, there are many others.  Below are some valuable sites for learning to program.&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3schools.com/ w3schools]&lt;br /&gt;
* [http://www.tutorialspoint.com/ Tutorials Point]&lt;br /&gt;
* [http://www.codecademy.com/ Code Academy]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2877</id>
		<title>This Is Your Brain On Informatics</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2877"/>
		<updated>2014-03-19T03:09:49Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
[[File:This Is Your Brain On Infomatics 03182014 Seung.jpg|thumb|250px|[https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] Teaching]]&lt;br /&gt;
&lt;br /&gt;
This class is an amazing class taught by [https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] that gives an excellent background in many of the approaches used to handle &amp;quot;big data&amp;quot; from an informatics stand point (the only way to do it).  This wiki has been developed as a general accessory to the course, including content that was taught in the class and content that might be useful for the final project.&lt;br /&gt;
&lt;br /&gt;
However, this wiki is not just for the class.  It contains much of the basic information of programming to help someone beginning their journey in programming or to serve as a resource along the way.&lt;br /&gt;
&lt;br /&gt;
Below are several pages with content from the class and content that may be useful when continuing on from the class&lt;br /&gt;
&lt;br /&gt;
*[[This Is Your Brain On Informatics: Linux|Linux]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: NGINX|NGINX]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: PHP-FPM|PHP-FPM]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: MariaDB|MariaDB]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Pico|Pico]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Code Examples|Code Examples]]&lt;br /&gt;
&lt;br /&gt;
== Previous Classes ==&lt;br /&gt;
This class has attracted a wide array of students at its inception starting out as a class designed for anyone that is interested in acquiring a foundation in programming.  Take a look [[This Is Your Brain On Informatics: Previous Classes|here]] to see some of the previous classes and who all they consisted of.&lt;br /&gt;
&lt;br /&gt;
== Programming Resources ==&lt;br /&gt;
While this page is a great resource for programming information, there are many others.  Below are some valuable sites for learning to program.&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3schools.com/ w3schools]&lt;br /&gt;
* [http://www.tutorialspoint.com/ Tutorials Point]&lt;br /&gt;
* [http://www.codecademy.com/ Code Academy]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=Template:This_Is_Your_Brain_On_Informatics&amp;diff=2876</id>
		<title>Template:This Is Your Brain On Informatics</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=Template:This_Is_Your_Brain_On_Informatics&amp;diff=2876"/>
		<updated>2014-03-19T03:07:44Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name = This Is Your Brain On Informatics&lt;br /&gt;
|bodyclass = hlist&lt;br /&gt;
|title = [[This Is Your Brain On Informatics]]&lt;br /&gt;
&lt;br /&gt;
|group1 = [[This Is Your Brain On Informatics: Linux|Linux]]&lt;br /&gt;
|list1 = &lt;br /&gt;
* [[This Is Your Brain On Informatics: Linux Commands|Using the System]]&lt;br /&gt;
* [[This Is Your Brain On Informatics: Common Pathnames|Common Pathnames]]&lt;br /&gt;
* [[This Is Your Brain On Informatics: Network|Setting up the Network]]&lt;br /&gt;
* [[This Is Your Brain On Informatics: DenyHosts|Working with DenyHosts]]&lt;br /&gt;
&lt;br /&gt;
|group2 = [[This Is Your Brain On Informatics: NGINX|NGINX]]&lt;br /&gt;
|list2 = &lt;br /&gt;
* [[This Is Your Brain On Informatics: NGINX and Large Files|NGINX and Large Files]]&lt;br /&gt;
&lt;br /&gt;
|group3 = PHP-FPM&lt;br /&gt;
|list3 = [[This Is Your Brain On Informatics: PHP-FPM|PHP-FPM]]&lt;br /&gt;
&lt;br /&gt;
|group4 = [[This Is Your Brain On Informatics: MariaDB|MariaDB]]&lt;br /&gt;
|list4 = &lt;br /&gt;
* [[This Is Your Brain On Informatics: User Interfaces|User Interfaces]]&lt;br /&gt;
* [[This Is Your Brain On Informatics: MariaDB SQL Commands|MariaDB SQL Commands]]&lt;br /&gt;
* [[This Is Your Brain On Informatics: Q&amp;amp;A|In-Class Questions and Answers]]&lt;br /&gt;
&lt;br /&gt;
|group5 = Pico&lt;br /&gt;
|list5 = [[This Is Your Brain On Informatics: Pico|Pico]]&lt;br /&gt;
&lt;br /&gt;
|group6 = [[This Is Your Brain On Informatics: Code Examples|Code Examples]]&lt;br /&gt;
|list6 = &lt;br /&gt;
* [[This Is Your Brain On Informatics: HTML|HTML]]&lt;br /&gt;
* [[This Is Your Brain On Informatics: PHP|PHP]]&lt;br /&gt;
&lt;br /&gt;
|group7 = [[This Is Your Brain On Informatics: Previous Classes|Previous Classes]]&lt;br /&gt;
|list7 = &lt;br /&gt;
* [[This Is Your Brain On Informatics: Previous Classes|Previous Classes]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2875</id>
		<title>This Is Your Brain On Informatics: Previous Classes</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2875"/>
		<updated>2014-03-19T03:05:31Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== First Class (Oct 2013) ==&lt;br /&gt;
The first class consisted of MSTP students and a PI.  This was the first class at UAB that sparked a movement for the class to begin impacting students around the school.&lt;br /&gt;
&lt;br /&gt;
== Second Class (Mar 2014) == &lt;br /&gt;
The second class was filled with medical students, an MSTP student, a PhD student, pre-dental student, and a pathologist.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Class of March 2014&amp;quot; align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(1).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(2).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(3).jpg&lt;br /&gt;
Image:This Is Your Brain On Informatics 03182014 Class(4).jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(4).jpg&amp;diff=2874</id>
		<title>File:This Is Your Brain On Informatics 03182014 Class(4).jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(4).jpg&amp;diff=2874"/>
		<updated>2014-03-19T02:57:59Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: This will be added to the second class gallery&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This will be added to the second class gallery&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(3).jpg&amp;diff=2873</id>
		<title>File:This Is Your Brain On Informatics 03182014 Class(3).jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(3).jpg&amp;diff=2873"/>
		<updated>2014-03-19T02:57:14Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: This will be added to the second class gallery&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This will be added to the second class gallery&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(2).jpg&amp;diff=2872</id>
		<title>File:This Is Your Brain On Informatics 03182014 Class(2).jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(2).jpg&amp;diff=2872"/>
		<updated>2014-03-19T02:56:10Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: This goes in the second class gallery&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This goes in the second class gallery&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(1).jpg&amp;diff=2871</id>
		<title>File:This Is Your Brain On Informatics 03182014 Class(1).jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=File:This_Is_Your_Brain_On_Informatics_03182014_Class(1).jpg&amp;diff=2871"/>
		<updated>2014-03-19T02:54:57Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: This goes in the gallery&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This goes in the gallery&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2870</id>
		<title>This Is Your Brain On Informatics</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2870"/>
		<updated>2014-03-19T02:52:08Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
[[File:This Is Your Brain On Infomatics 03182014 Seung.jpg|thumb|250px|[https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] Teaching]]&lt;br /&gt;
&lt;br /&gt;
This class is an amazing class taught by [https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] that gives an excellent background in many of the approaches used to handle &amp;quot;big data&amp;quot; from an informatics stand point (the only way to do it).  This wiki has been developed as a general accessory to the course, including content that was taught in the class and content that might be useful for the final project.&lt;br /&gt;
&lt;br /&gt;
However, this wiki is not just for the class.  It contains much of the basic information of programming to help someone beginning their journey in programming or to serve as a resource along the way.&lt;br /&gt;
&lt;br /&gt;
Below are several pages with content from the class and content that may be useful when continuing on from the class&lt;br /&gt;
&lt;br /&gt;
*[[This Is Your Brain On Informatics: Linux|Linux]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: NGINX|NGINX]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: PHP-FPM|PHP-FPM]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: MariaDB|MariaDB]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Pico|Pico]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Code Examples|Code Examples]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Previous Classes ==&lt;br /&gt;
&lt;br /&gt;
This class has attracted a wide array of students at its inception starting out as a class designed for anyone that is interested in acquiring a foundation in programming.  Take a look [[This Is Your Brain On Informatics: Previous Classes|here]] to see some of the previous classes and who all they consisted of.&lt;br /&gt;
&lt;br /&gt;
== Programming Resources ==&lt;br /&gt;
&lt;br /&gt;
While this page is a great resource for programming information, there are many others.  Below are some valuable sites for learning to program.&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3schools.com/ w3schools]&lt;br /&gt;
* [http://www.tutorialspoint.com/ Tutorials Point]&lt;br /&gt;
* [http://www.codecademy.com/ Code Academy]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2869</id>
		<title>This Is Your Brain On Informatics: Previous Classes</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2869"/>
		<updated>2014-03-19T02:48:03Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== First Class (Oct 2013) ==&lt;br /&gt;
The first class consisted of MSTP students and a PI.  This was the first class at UAB that sparked a movement for the class to begin impacting students around the school.&lt;br /&gt;
&lt;br /&gt;
== Second Class (Mar 2014) == &lt;br /&gt;
The second class was filled with medical students, an MSTP student, a PhD student, pre-dental student, and a pathologist.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2868</id>
		<title>This Is Your Brain On Informatics: Previous Classes</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Previous_Classes&amp;diff=2868"/>
		<updated>2014-03-19T02:47:18Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: Created page with &amp;quot;== First Class (Oct 2013) == The first class consisted of MSTP students and a PI.  This was the first class at UAB that sparked a movement for the class to begin impacting stu...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== First Class (Oct 2013) ==&lt;br /&gt;
The first class consisted of MSTP students and a PI.  This was the first class at UAB that sparked a movement for the class to begin impacting students around the school.&lt;br /&gt;
&lt;br /&gt;
== Second Class (Mar 2014) == &lt;br /&gt;
The second class was filled with medical students, an MSTP student, a PhD student, pre-dental student, and a pathologist.&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2867</id>
		<title>This Is Your Brain On Informatics</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics&amp;diff=2867"/>
		<updated>2014-03-19T02:44:58Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: /* Previous Classes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
[[File:This Is Your Brain On Infomatics 03182014 Seung.jpg|thumb|250px|[https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] Teaching]]&lt;br /&gt;
&lt;br /&gt;
This class is an amazing class taught by [https://services.medicine.uab.edu/facultyDirectory/FacultyData.asp?s_lname=Park&amp;amp;s_keyword=&amp;amp;s_fname=Seung&amp;amp;FacultyTypeID=&amp;amp;s_Department_Name=&amp;amp;s_ResearchTitle=&amp;amp;FID=61255 Seung Park, MD] that gives an excellent background in many of the approaches used to handle &amp;quot;big data&amp;quot; from an informatics stand point (the only way to do it).  This wiki has been developed as a general accessory to the course, including content that was taught in the class and content that might be useful for the final project.&lt;br /&gt;
&lt;br /&gt;
However, this wiki is not just for the class.  It contains much of the basic information of programming to help someone beginning their journey in programming or to serve as a resource along the way.&lt;br /&gt;
&lt;br /&gt;
Below are several pages with content from the class and content that may be useful when continuing on from the class&lt;br /&gt;
&lt;br /&gt;
*[[This Is Your Brain On Informatics: Linux|Linux]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: NGINX|NGINX]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: PHP-FPM|PHP-FPM]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: MariaDB|MariaDB]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Pico|Pico]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: Code Examples|Code Examples]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Previous Classes ==&lt;br /&gt;
&lt;br /&gt;
This class has attracted a wide array of students at its inception starting out as a class designed for anyone that is interested in acquiring a foundation in programming.  Take a look [[This Is Your Brain On Informatics: Previous Classes|here]] to see some of the previous classes and who all they consisted of.&lt;br /&gt;
&lt;br /&gt;
== Programming Resources ==&lt;br /&gt;
&lt;br /&gt;
While this page is a great resource for programming information, it is not the only one.  Below are some links to more resources that may be useful.&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3schools.com/ w3schools]&lt;br /&gt;
* [http://www.tutorialspoint.com/ Tutorials Point]&lt;br /&gt;
* [http://www.codecademy.com/ Code Academy]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=HTML:_Nucleotide_Fun&amp;diff=2866</id>
		<title>HTML: Nucleotide Fun</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=HTML:_Nucleotide_Fun&amp;diff=2866"/>
		<updated>2014-03-19T02:41:36Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note: This code will only run with the PHP file that is also titled [[PHP: Nucleotide Fun|Nucleotide Fun]]&lt;br /&gt;
.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;html5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Nucleotide Test&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;Please enter a nucleotide sequence (DNA or RNA)&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;form action = &amp;quot;nucleotide.php&amp;quot; method = &amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input name = &amp;quot;seq&amp;quot; type = &amp;quot;text&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;br /&gt;
      &amp;lt;input type = &amp;quot;submit&amp;quot; value = &amp;quot;submit&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=HTML:_Nucleotide_Fun&amp;diff=2865</id>
		<title>HTML: Nucleotide Fun</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=HTML:_Nucleotide_Fun&amp;diff=2865"/>
		<updated>2014-03-19T02:41:10Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note: This code will only run with PHP file that is also titled [[PHP: Nucleotide Fun|Nucleotide Fun]]&lt;br /&gt;
.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;html5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Nucleotide Test&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;Please enter a nucleotide sequence (DNA or RNA)&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;form action = &amp;quot;nucleotide.php&amp;quot; method = &amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input name = &amp;quot;seq&amp;quot; type = &amp;quot;text&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;br /&gt;
      &amp;lt;input type = &amp;quot;submit&amp;quot; value = &amp;quot;submit&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=Form_Page&amp;diff=2864</id>
		<title>Form Page</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=Form_Page&amp;diff=2864"/>
		<updated>2014-03-19T02:40:58Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;html5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt; &amp;lt;!--Determines the name of the HTML website, displayed on the the tab--&amp;gt;&lt;br /&gt;
	  HTML File&lt;br /&gt;
	&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;form action=&amp;quot;test.php&amp;quot; method=&amp;quot;get&amp;quot;&amp;gt; &amp;lt;!--Introduces the form where action links to the php file--&amp;gt;&lt;br /&gt;
      &amp;lt;select name=&amp;quot;var&amp;quot;&amp;gt; &amp;lt;!--Creates a selectable list (dropdown list)--&amp;gt;&lt;br /&gt;
        &amp;lt;option value=&amp;quot;0&amp;quot;&amp;gt;0&amp;lt;/option&amp;gt; &amp;lt;!--Creates an option in a dropdown list where value refers to php variable $_GET['var']--&amp;gt;&lt;br /&gt;
        &amp;lt;option value=&amp;quot;1&amp;quot;&amp;gt;1&amp;lt;/option&amp;gt;&lt;br /&gt;
      &amp;lt;/select&amp;gt;&lt;br /&gt;
      &lt;br /&gt;
      &amp;lt;input name=&amp;quot;ooga&amp;quot; type=&amp;quot;text&amp;quot;&amp;gt;&amp;lt;/input&amp;gt; &amp;lt;!--Creates a textbox for input where name refers to the php variable as above--&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;submit&amp;quot;&amp;gt;&amp;lt;/input&amp;gt; &amp;lt;!--Creates the submit button that creates an output with the value--&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=Basic_HTML&amp;diff=2863</id>
		<title>Basic HTML</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=Basic_HTML&amp;diff=2863"/>
		<updated>2014-03-19T02:40:46Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;html5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Comments appear as this in HTML5--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt; &amp;lt;!--Starts and encapsulates the HTML code--&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt; &amp;lt;!--First section that invisibly controls the rest of the document--&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt; &amp;lt;!--Determines the name of the HTML website, displayed on the the tab--&amp;gt;&lt;br /&gt;
	  HTML File&lt;br /&gt;
	&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;body&amp;gt; &amp;lt;!--Main portion of the file--&amp;gt;&lt;br /&gt;
    &amp;lt;a name=&amp;quot;gbs788&amp;quot;&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;!--anchor where name identifies the anchor--&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;GBS 788&amp;lt;/h1&amp;gt; &amp;lt;!--header--&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt; &amp;lt;!--paragraph--&amp;gt;&lt;br /&gt;
     &amp;quot;Well, Prince, so Genoa and Lucca are now just family estates of the &lt;br /&gt;
     Buonapartes. &amp;lt;strong&amp;gt;But I warn you, if you don't tell me that this&amp;lt;/strong&amp;gt; &amp;lt;!--Bold--&amp;gt;&lt;br /&gt;
     means war, if you still try to defend the infamies and horrors perpetrated &lt;br /&gt;
     by that Antichrist—I really believe he is Antichrist—I will have nothing&lt;br /&gt;
     more to do with you and you are no longer my friend, no longer my 'faithful&lt;br /&gt;
     slave,' as you call yourself! But how do you do? I see I have frightened&lt;br /&gt;
     you—sit down and tell me all the news.&amp;quot;  &lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      HTML is &amp;lt;em&amp;gt;written in the form of HTML elements&amp;lt;/em&amp;gt; consisting of tags enclosed &amp;lt;!--italics--&amp;gt;&lt;br /&gt;
      in angle brackets (like &amp;amp;lt;html&amp;amp;gt;), within the web page content. HTML tags&lt;br /&gt;
      most commonly come in pairs like  and , although some tags represent empty&lt;br /&gt;
      elements and so are unpaired, for example &amp;amp;lt;img&amp;amp;gt;. The first&lt;br /&gt;
      tag in a pair is the start tag, and the second tag is the end tag (they&lt;br /&gt;
      are also called opening tags and closing tags). In between these tags web &lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      During the late 1900s, man’s life span has increased dramatically from an&lt;br /&gt;
      average of 50 years to 70 years.  With this amazing increase in life, man&lt;br /&gt;
      has become afflicted with diseases that were not common, if hardly known,&lt;br /&gt;
      before.  One of those diseases is cancer, a disease today dreaded by many.&lt;br /&gt;
      Because this disease is so wide spread, a separate classification of&lt;br /&gt;
      doctors has been made to study and treat this disease:  the oncologist.&lt;br /&gt;
      Oncology is an amazing career that requires extensive education in order&lt;br /&gt;
      for the oncologist to perform his daily tasks.&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
      &lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      The first aspect of oncology is the disease itself, cancer.  Cancer first&lt;br /&gt;
      begins by the growth of an abnormal cell, caused by some malfunction in&lt;br /&gt;
      the DNA of the cell.  Although this problem is normally causes certain&lt;br /&gt;
      systems designed to protect the body to either destroy the cell or cause&lt;br /&gt;
      the cell to self-destruct, the cancer cell has so maligned its DNA that&lt;br /&gt;
      these safety precautions are shut down.  Once the cancer has developed it&lt;br /&gt;
      is given a name based on its origin in the body.  Because the cancer cells&lt;br /&gt;
      do not die, the cancer cells reproduction causes their number to increase&lt;br /&gt;
      without any loss of the previous cells.  This reproduction slowly or&lt;br /&gt;
      sometimes quickly pushes the other good cells away. &lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      Because this disease is so deadly and so common in today’s society, a&lt;br /&gt;
      classification of doctors, called oncologists, was formed to study and&lt;br /&gt;
      treat cancer, specifically the malignant tumors that cancer forms in the&lt;br /&gt;
      body.  Yet cancer became so wide spread that even the classification of&lt;br /&gt;
      oncologists was broken down further into three divisions: the medical&lt;br /&gt;
      oncologist, the surgical oncologist, and the radiation oncologist.&lt;br /&gt;
      The first division is a medical oncologist who uses certain types of&lt;br /&gt;
      medicine and chemotherapy to rid the body of malignant tumors.  The second&lt;br /&gt;
      division is a surgical oncologist.  This oncologist uses surgery to try to&lt;br /&gt;
      rid the body malignant tumors.  The final division of oncologists is a&lt;br /&gt;
      radiation oncologist who uses various forms of radiation to kill off&lt;br /&gt;
      cancer cells.&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      Since Oncology is such a large and complex career, it requires a&lt;br /&gt;
      significant amount of training to become an oncologist, starting even in&lt;br /&gt;
      high school.  When in high school a student needs to prepare to be an&lt;br /&gt;
      oncologist by studying most of the sciences including biology, chemistry,&lt;br /&gt;
      physics, and anatomy to prepare himself for college and extensive science&lt;br /&gt;
      knowledge necessary to diagnose and treat a patient with drugs or surgery.&lt;br /&gt;
      Also, mathematic courses such as Algebra I and II, Geometry, and&lt;br /&gt;
      Trigonometry will be very important since the growth of a tumor and the&lt;br /&gt;
      effects of chemotherapy on that &amp;lt;a href=&amp;quot;#gbs788&amp;quot;&amp;gt;tumor&amp;lt;/a&amp;gt; can be &amp;lt;!--links to the anchor where href = &amp;quot;#&amp;quot; links to name of anchor--&amp;gt;&lt;br /&gt;
      predicted using&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      &amp;lt;a href=&amp;quot;http://cnn.com&amp;quot;&amp;gt;CNN&amp;lt;/a&amp;gt; &amp;lt;!--hyperlink where href links to the webpage--&amp;gt;&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=HTML/PHP_Database_Dump&amp;diff=2862</id>
		<title>HTML/PHP Database Dump</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=HTML/PHP_Database_Dump&amp;diff=2862"/>
		<updated>2014-03-19T02:40:29Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$con = mysqli_connect(&amp;quot;localhost&amp;quot;, &amp;quot;gbs788db&amp;quot;, &amp;quot;pw&amp;quot;, &amp;quot;gbs788db&amp;quot;); //This references the database. We store it as a variable only so that we don't have to keep writing it out. &lt;br /&gt;
if(mysqli_connect_errno())&lt;br /&gt;
{&lt;br /&gt;
	die(&amp;quot;Could not connect: &amp;quot; . mysqli_connect_errno());//Kills the connection if an error and uses mysqli_connect_errno () to print a readable message to the screen&lt;br /&gt;
	/*The error number will pass as a zero if it is successful; otherwise it will include an error number. The &amp;quot;.&amp;quot; is a concatenator. */&lt;br /&gt;
}&lt;br /&gt;
/*If we made it this far, it means that we successfully connected and made it to the next line. By putting echo, we are including html now!!*/&lt;br /&gt;
echo '&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Ooga&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;It is Tims Fault&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Accession&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Ordered By&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Test&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Turn Around Time&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Result&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
';&lt;br /&gt;
$sql = &amp;quot;SELECT * FROM `test2`;&amp;quot;;&lt;br /&gt;
$result = mysqli_query($con, $sql); //This does what we have been doing in SQL: connecting to the database, and then putting in the query.&lt;br /&gt;
while ($row=mysqli_fetch_array($result))//This command just looks at a table row by row.&lt;br /&gt;
/*This while loop allows the computer to keep going back in and getting another result*/&lt;br /&gt;
{&lt;br /&gt;
	echo '&lt;br /&gt;
      &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['accession'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['ordering'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['test'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['tat'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['result'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;  &lt;br /&gt;
	'; /*This closes out the echo*/&lt;br /&gt;
}&lt;br /&gt;
echo '&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
';&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=Genesetdb&amp;diff=2861</id>
		<title>Genesetdb</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=Genesetdb&amp;diff=2861"/>
		<updated>2014-03-19T02:40:15Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;genetable for the ooga&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt; Genetable&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Experiment Number&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Gene ID&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$con= mysqli_connect(&amp;quot;localhost&amp;quot;, &amp;quot;ooga&amp;quot;, &amp;quot;booga&amp;quot;,&amp;quot;genesetdb&amp;quot;);&lt;br /&gt;
if(mysqli_connect_errno())&lt;br /&gt;
{&lt;br /&gt;
    die( &amp;quot;could not connect: &amp;quot; . mysqli_connect_error());&lt;br /&gt;
}&lt;br /&gt;
// Get absolute count of rows in table &amp;quot;genesets&amp;quot;; export&lt;br /&gt;
// that count into a variable called $pidcount&lt;br /&gt;
$sql = &amp;quot;SELECT COUNT(*) AS cnt FROM `genesets`;&amp;quot;;&lt;br /&gt;
$result = mysqli_query($con, $sql);&lt;br /&gt;
$row = mysqli_fetch_array($result);&lt;br /&gt;
$pidcount = $row['cnt'];&lt;br /&gt;
/* &lt;br /&gt;
Now get the entirety of genesets and CHOWN THE HELL OUT OF IT!&lt;br /&gt;
Where &amp;quot;CHOWNing&amp;quot; in this case means the generation of a table&lt;br /&gt;
that looks roughly like:&lt;br /&gt;
pid    geneid&lt;br /&gt;
---    ------&lt;br /&gt;
1      $row[3]&lt;br /&gt;
1      $row[4]&lt;br /&gt;
1      $row[5]&lt;br /&gt;
...&lt;br /&gt;
1      $row[203]&lt;br /&gt;
2      $row[3]&lt;br /&gt;
...&lt;br /&gt;
*/&lt;br /&gt;
$sql = &amp;quot;SELECT * FROM `genesets`;&amp;quot;;&lt;br /&gt;
$result = mysqli_query($con, $sql);&lt;br /&gt;
while($row = mysqli_fetch_array($result))&lt;br /&gt;
{&lt;br /&gt;
    for($i = 3; $i&amp;lt;204; $i++)&lt;br /&gt;
    {&lt;br /&gt;
        $booga = &amp;quot;INSERT INTO finalgeneset(exp,geneid) VALUES(&amp;quot; . $row[0] . &amp;quot;,&amp;quot; . $row[$i] . &amp;quot;);&amp;quot;;&lt;br /&gt;
        $ooga = mysqli_query($con, $booga);&lt;br /&gt;
        echo '&lt;br /&gt;
      &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row[0] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row[$i] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
        ';&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=PHP:_Nucleotide_Fun&amp;diff=2860</id>
		<title>PHP: Nucleotide Fun</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=PHP:_Nucleotide_Fun&amp;diff=2860"/>
		<updated>2014-03-19T02:39:57Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note:  This is the PHP file that will run with the HTML file also titled [[HTML: Nucleotide Fun|Nucleotide Fun]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
	$DNA = &amp;quot; does not contain U.&amp;quot;;&lt;br /&gt;
	$RNA = &amp;quot; contains U.&amp;quot;;&lt;br /&gt;
	$seq = $_GET['seq'];&lt;br /&gt;
	&lt;br /&gt;
	for($i=0; $i&amp;lt;strlen($seq); $i++)&lt;br /&gt;
	{&lt;br /&gt;
		if($seq[$i] == 'U' || $seq[$i] == 'u')&lt;br /&gt;
		{&lt;br /&gt;
			echo &amp;quot;The input sequence is  RNA because RNA&amp;quot; . $RNA . &amp;quot;\n&amp;quot;;&lt;br /&gt;
			break;&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
		else if($i == strlen($seq)-1)&lt;br /&gt;
		{&lt;br /&gt;
			echo &amp;quot;The input sequence is DNA because DNA&amp;quot; . $DNA . &amp;quot;\n&amp;quot;;&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=HTML/PHP_Database_Dump&amp;diff=2859</id>
		<title>HTML/PHP Database Dump</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=HTML/PHP_Database_Dump&amp;diff=2859"/>
		<updated>2014-03-19T02:39:37Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$con = mysqli_connect(&amp;quot;localhost&amp;quot;, &amp;quot;gbs788db&amp;quot;, &amp;quot;pw&amp;quot;, &amp;quot;gbs788db&amp;quot;); //This references the database. We store it as a variable only so that we don't have to keep writing it out. &lt;br /&gt;
if(mysqli_connect_errno())&lt;br /&gt;
{&lt;br /&gt;
	die(&amp;quot;Could not connect: &amp;quot; . mysqli_connect_errno());//Kills the connection if an error and uses mysqli_connect_errno () to print a readable message to the screen&lt;br /&gt;
	/*The error number will pass as a zero if it is successful; otherwise it will include an error number. The &amp;quot;.&amp;quot; is a concatenator. */&lt;br /&gt;
}&lt;br /&gt;
/*If we made it this far, it means that we successfully connected and made it to the next line. By putting echo, we are including html now!!*/&lt;br /&gt;
echo '&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Ooga&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;It is Tims Fault&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Accession&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Ordered By&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Test&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Turn Around Time&amp;lt;/th&amp;gt;&lt;br /&gt;
        &amp;lt;th&amp;gt;Result&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
';&lt;br /&gt;
$sql = &amp;quot;SELECT * FROM `test2`;&amp;quot;;&lt;br /&gt;
$result = mysqli_query($con, $sql); //This does what we have been doing in SQL: connecting to the database, and then putting in the query.&lt;br /&gt;
while ($row=mysqli_fetch_array($result))//This command just looks at a table row by row.&lt;br /&gt;
/*This while loop allows the computer to keep going back in and getting another result*/&lt;br /&gt;
{&lt;br /&gt;
	echo '&lt;br /&gt;
      &amp;lt;tr&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['accession'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['ordering'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['test'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['tat'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;' . $row['result'] . '&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;  &lt;br /&gt;
	'; /*This closes out the echo*/&lt;br /&gt;
}&lt;br /&gt;
echo '&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
';&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=HTML:_Nucleotide_Fun&amp;diff=2858</id>
		<title>HTML: Nucleotide Fun</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=HTML:_Nucleotide_Fun&amp;diff=2858"/>
		<updated>2014-03-19T02:39:19Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note: This code will only run with PHP file that is also titled [[PHP: Nucleotide Fun|Nucleotide Fun]]&lt;br /&gt;
.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;html5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Nucleotide Test&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;Please enter a nucleotide sequence (DNA or RNA)&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;form action = &amp;quot;nucleotide.php&amp;quot; method = &amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input name = &amp;quot;seq&amp;quot; type = &amp;quot;text&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;br /&gt;
      &amp;lt;input type = &amp;quot;submit&amp;quot; value = &amp;quot;submit&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=Form_Page&amp;diff=2857</id>
		<title>Form Page</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=Form_Page&amp;diff=2857"/>
		<updated>2014-03-19T02:39:07Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;html5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt; &amp;lt;!--Determines the name of the HTML website, displayed on the the tab--&amp;gt;&lt;br /&gt;
	  HTML File&lt;br /&gt;
	&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;form action=&amp;quot;test.php&amp;quot; method=&amp;quot;get&amp;quot;&amp;gt; &amp;lt;!--Introduces the form where action links to the php file--&amp;gt;&lt;br /&gt;
      &amp;lt;select name=&amp;quot;var&amp;quot;&amp;gt; &amp;lt;!--Creates a selectable list (dropdown list)--&amp;gt;&lt;br /&gt;
        &amp;lt;option value=&amp;quot;0&amp;quot;&amp;gt;0&amp;lt;/option&amp;gt; &amp;lt;!--Creates an option in a dropdown list where value refers to php variable $_GET['var']--&amp;gt;&lt;br /&gt;
        &amp;lt;option value=&amp;quot;1&amp;quot;&amp;gt;1&amp;lt;/option&amp;gt;&lt;br /&gt;
      &amp;lt;/select&amp;gt;&lt;br /&gt;
      &lt;br /&gt;
      &amp;lt;input name=&amp;quot;ooga&amp;quot; type=&amp;quot;text&amp;quot;&amp;gt;&amp;lt;/input&amp;gt; &amp;lt;!--Creates a textbox for input where name refers to the php variable as above--&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;submit&amp;quot;&amp;gt;&amp;lt;/input&amp;gt; &amp;lt;!--Creates the submit button that creates an output with the value--&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=Basic_HTML&amp;diff=2856</id>
		<title>Basic HTML</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=Basic_HTML&amp;diff=2856"/>
		<updated>2014-03-19T02:38:44Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;html5&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Comments appear as this in HTML5--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt; &amp;lt;!--Starts and encapsulates the HTML code--&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt; &amp;lt;!--First section that invisibly controls the rest of the document--&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt; &amp;lt;!--Determines the name of the HTML website, displayed on the the tab--&amp;gt;&lt;br /&gt;
	  HTML File&lt;br /&gt;
	&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;body&amp;gt; &amp;lt;!--Main portion of the file--&amp;gt;&lt;br /&gt;
    &amp;lt;a name=&amp;quot;gbs788&amp;quot;&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;!--anchor where name identifies the anchor--&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;GBS 788&amp;lt;/h1&amp;gt; &amp;lt;!--header--&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt; &amp;lt;!--paragraph--&amp;gt;&lt;br /&gt;
     &amp;quot;Well, Prince, so Genoa and Lucca are now just family estates of the &lt;br /&gt;
     Buonapartes. &amp;lt;strong&amp;gt;But I warn you, if you don't tell me that this&amp;lt;/strong&amp;gt; &amp;lt;!--Bold--&amp;gt;&lt;br /&gt;
     means war, if you still try to defend the infamies and horrors perpetrated &lt;br /&gt;
     by that Antichrist—I really believe he is Antichrist—I will have nothing&lt;br /&gt;
     more to do with you and you are no longer my friend, no longer my 'faithful&lt;br /&gt;
     slave,' as you call yourself! But how do you do? I see I have frightened&lt;br /&gt;
     you—sit down and tell me all the news.&amp;quot;  &lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      HTML is &amp;lt;em&amp;gt;written in the form of HTML elements&amp;lt;/em&amp;gt; consisting of tags enclosed &amp;lt;!--italics--&amp;gt;&lt;br /&gt;
      in angle brackets (like &amp;amp;lt;html&amp;amp;gt;), within the web page content. HTML tags&lt;br /&gt;
      most commonly come in pairs like  and , although some tags represent empty&lt;br /&gt;
      elements and so are unpaired, for example &amp;amp;lt;img&amp;amp;gt;. The first&lt;br /&gt;
      tag in a pair is the start tag, and the second tag is the end tag (they&lt;br /&gt;
      are also called opening tags and closing tags). In between these tags web &lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      During the late 1900s, man’s life span has increased dramatically from an&lt;br /&gt;
      average of 50 years to 70 years.  With this amazing increase in life, man&lt;br /&gt;
      has become afflicted with diseases that were not common, if hardly known,&lt;br /&gt;
      before.  One of those diseases is cancer, a disease today dreaded by many.&lt;br /&gt;
      Because this disease is so wide spread, a separate classification of&lt;br /&gt;
      doctors has been made to study and treat this disease:  the oncologist.&lt;br /&gt;
      Oncology is an amazing career that requires extensive education in order&lt;br /&gt;
      for the oncologist to perform his daily tasks.&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
      &lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      The first aspect of oncology is the disease itself, cancer.  Cancer first&lt;br /&gt;
      begins by the growth of an abnormal cell, caused by some malfunction in&lt;br /&gt;
      the DNA of the cell.  Although this problem is normally causes certain&lt;br /&gt;
      systems designed to protect the body to either destroy the cell or cause&lt;br /&gt;
      the cell to self-destruct, the cancer cell has so maligned its DNA that&lt;br /&gt;
      these safety precautions are shut down.  Once the cancer has developed it&lt;br /&gt;
      is given a name based on its origin in the body.  Because the cancer cells&lt;br /&gt;
      do not die, the cancer cells reproduction causes their number to increase&lt;br /&gt;
      without any loss of the previous cells.  This reproduction slowly or&lt;br /&gt;
      sometimes quickly pushes the other good cells away. &lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      Because this disease is so deadly and so common in today’s society, a&lt;br /&gt;
      classification of doctors, called oncologists, was formed to study and&lt;br /&gt;
      treat cancer, specifically the malignant tumors that cancer forms in the&lt;br /&gt;
      body.  Yet cancer became so wide spread that even the classification of&lt;br /&gt;
      oncologists was broken down further into three divisions: the medical&lt;br /&gt;
      oncologist, the surgical oncologist, and the radiation oncologist.&lt;br /&gt;
      The first division is a medical oncologist who uses certain types of&lt;br /&gt;
      medicine and chemotherapy to rid the body of malignant tumors.  The second&lt;br /&gt;
      division is a surgical oncologist.  This oncologist uses surgery to try to&lt;br /&gt;
      rid the body malignant tumors.  The final division of oncologists is a&lt;br /&gt;
      radiation oncologist who uses various forms of radiation to kill off&lt;br /&gt;
      cancer cells.&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      Since Oncology is such a large and complex career, it requires a&lt;br /&gt;
      significant amount of training to become an oncologist, starting even in&lt;br /&gt;
      high school.  When in high school a student needs to prepare to be an&lt;br /&gt;
      oncologist by studying most of the sciences including biology, chemistry,&lt;br /&gt;
      physics, and anatomy to prepare himself for college and extensive science&lt;br /&gt;
      knowledge necessary to diagnose and treat a patient with drugs or surgery.&lt;br /&gt;
      Also, mathematic courses such as Algebra I and II, Geometry, and&lt;br /&gt;
      Trigonometry will be very important since the growth of a tumor and the&lt;br /&gt;
      effects of chemotherapy on that &amp;lt;a href=&amp;quot;#gbs788&amp;quot;&amp;gt;tumor&amp;lt;/a&amp;gt; can be &amp;lt;!--links to the anchor where href = &amp;quot;#&amp;quot; links to name of anchor--&amp;gt;&lt;br /&gt;
      predicted using&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
      &amp;lt;a href=&amp;quot;http://cnn.com&amp;quot;&amp;gt;CNN&amp;lt;/a&amp;gt; &amp;lt;!--hyperlink where href links to the webpage--&amp;gt;&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_PHP&amp;diff=2855</id>
		<title>This Is Your Brain On Informatics: PHP</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_PHP&amp;diff=2855"/>
		<updated>2014-03-19T02:38:24Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Example Codes ===&lt;br /&gt;
*[[HTML/PHP Database Dump]]&lt;br /&gt;
*[[PHP: Nucleotide Fun|Nucleotide Fun]]&lt;br /&gt;
*[[genesetdb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_HTML&amp;diff=2854</id>
		<title>This Is Your Brain On Informatics: HTML</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_HTML&amp;diff=2854"/>
		<updated>2014-03-19T02:37:42Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== HTML Examples ===&lt;br /&gt;
*[[Basic HTML]]&lt;br /&gt;
*[[Form Page]]&lt;br /&gt;
*[[HTML: Nucleotide Fun|Nucleotide Fun]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_HTML&amp;diff=2853</id>
		<title>This Is Your Brain On Informatics: HTML</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_HTML&amp;diff=2853"/>
		<updated>2014-03-19T02:37:36Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== HTML Examples ===&lt;br /&gt;
*[[Basic HTML]]&lt;br /&gt;
*[[Form Page]]&lt;br /&gt;
*[[HTML: Nucleotide Fun|Nucleotide Fun]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Code_Examples&amp;diff=2852</id>
		<title>This Is Your Brain On Informatics: Code Examples</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Code_Examples&amp;diff=2852"/>
		<updated>2014-03-19T02:37:17Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Languages ===&lt;br /&gt;
*[[This Is Your Brain On Informatics: HTML|HTML]]&lt;br /&gt;
*[[This Is Your Brain On Informatics: PHP|PHP]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
	<entry>
		<id>https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Pico&amp;diff=2851</id>
		<title>This Is Your Brain On Informatics: Pico</title>
		<link rel="alternate" type="text/html" href="https://dev.peirmost.ifx.uab.edu/index.php?title=This_Is_Your_Brain_On_Informatics:_Pico&amp;diff=2851"/>
		<updated>2014-03-19T02:36:48Z</updated>

		<summary type="html">&lt;p&gt;Tikenn: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below are some common commands that can be used to easily move around in Pico.  This program can be easily accessed by typing in [[This Is Your Brain On Informatics: Linux Commands|pico ''/pathname'']] on the command line.&lt;br /&gt;
&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! Command* !! Description&lt;br /&gt;
|-&lt;br /&gt;
| ^k || delete line&lt;br /&gt;
|-&lt;br /&gt;
| ^u || undoes one typo&lt;br /&gt;
|-&lt;br /&gt;
| ^v || page down&lt;br /&gt;
|-&lt;br /&gt;
| ^w || find&lt;br /&gt;
|-&lt;br /&gt;
| ^y || page down&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;The ^ symbol indicates the Ctrl key for Windows users and the Command key for Mac users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{This Is Your Brain On Informatics}}&lt;br /&gt;
&lt;br /&gt;
[[Category:This Is Your Brain On Informatics]]&lt;/div&gt;</summary>
		<author><name>Tikenn</name></author>
		
	</entry>
</feed>