JohnnyAlpha
Programmer
Hi,
I have created a db called test and a table called temp_table. Here it is..
mysql> describe temp_table;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| Number_1 | varchar(10) | | | | |
| Number_2 | varchar(10) | | | | |
| Number_3 | varchar(10) | | | | |
| Number_4 | varchar(10) | | | | |
+----------+-------------+------+-----+---------+-------+
4 rows in set (0.02 sec)
Now I have used a text file called temp_table.txt to import the data into this table as follows:
C:\mysql\bin>mysqlimport test temp_table.txt
all the text file has are the followig:
'1','2','3','4'
When I run the above I get an all OK it seems...
test.temp_table: Records: 1 Deleted: 0 Skipped: 0 Warnings: 4
Thing is that when I review the table I cannot seem to find the actual values of the fields. How can these be viewed ?
Thanks and advanced.
John
I have created a db called test and a table called temp_table. Here it is..
mysql> describe temp_table;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| Number_1 | varchar(10) | | | | |
| Number_2 | varchar(10) | | | | |
| Number_3 | varchar(10) | | | | |
| Number_4 | varchar(10) | | | | |
+----------+-------------+------+-----+---------+-------+
4 rows in set (0.02 sec)
Now I have used a text file called temp_table.txt to import the data into this table as follows:
C:\mysql\bin>mysqlimport test temp_table.txt
all the text file has are the followig:
'1','2','3','4'
When I run the above I get an all OK it seems...
test.temp_table: Records: 1 Deleted: 0 Skipped: 0 Warnings: 4
Thing is that when I review the table I cannot seem to find the actual values of the fields. How can these be viewed ?
Thanks and advanced.
John