MySQL snippets – CREATE TABLE statement sample as bash shell.

Posted by Jiltin     Tags: , 15 April, 2009    1,606 views    (0) Comment

The CREATE TABLE statement is used to create a table in MySQL. Syntax: CREATE TABLE table_name ( column_name1 data_type, column_name2 data_type, column_name3 data_type, …. ) sample #!/bin/sh # # Developed by notesbit # Shows all users and the user status # #mysql> desc user_transactions; #+——————+————-+——+—–+——————-+——-+ #‘ Field     Read Full Article (Click here)...

Categories : MySQL, Web Mysql Tags : ,