http://www.javaworld.com.tw/jute/post/view?bid=21&id=217814&tpg=9&ppg=1&sty=0&age=0
2013年3月11日 星期一
2013年3月7日 星期四
[mysql] How to create a IDENTITY column in MySQL?
create TABLE Table1
(
ID int AUTO_INCREMENT PRIMARY KEY,
classid int,
sex varchar(10),
age int
)
ID 會自動加1且是PRIMARY KEY
AUTO_INCREMENT 相當於 IDENTITY (1,1)
(
ID int AUTO_INCREMENT PRIMARY KEY,
classid int,
sex varchar(10),
age int
)
ID 會自動加1且是PRIMARY KEY
AUTO_INCREMENT 相當於 IDENTITY (1,1)
訂閱:
文章 (Atom)
讓ASP.NET網站在開發除錯時期擁有WEB.CONFIG文件轉換功能
ref: https://blog.kkbruce.net/2016/09/enabling-xml-document-transforms-for-all-asp-net-web-by-develop-time.html#.XoP1KGMzbRY
-
https://docs.microsoft.com/zh-tw/dotnet/framework/data/transactions/using-system-transactions-in-aspnet <system.web> <co...
-
ASP 判断Session变量是否存在的4种方法 1 If Session("sesName") = "" Then ... 2 If Session("sesName") = Empty Then ... 3 If...