We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc1d99f commit 1d6d027Copy full SHA for 1d6d027
README.md
@@ -1,3 +1,6 @@
1
python
2
======
3
学习Python时的代码
4
+
5
+LearnPython
6
+20150826
Untitled.sql
@@ -0,0 +1,18 @@
+SELECT * FROM Customers
+WHERE City LIKE '[bsp]%'
+SELECT Contactname, Address From test.Customers
+CREATE TABLE CustomersTemp
7
+(CustomerID int(2) primary key not null AUTO_INCREMENT,
8
+CustomerName character(36),
9
+ContactName character(200),
10
+Addresss character(47),
11
+City character(26),
12
+Postalcode character(14),
13
+Country charater(11));
14
15
+LOAD DATA LOCAL INFILE '/Users/linma/Documents/cw/W/MySQL/Customers.tsv'
16
+into table test.CustomersTemp
17
+fields terminated by '\t'
18
+ignore 1 rows;
0 commit comments