I got 1 Field that fill with "2008/02/04 15:46:00" What i need is to change all of the row to "15:46" Without the "2008/02/04"
simple trim but how i done it with sql statment? And How i do this to the all Row ??
simple trim but how i done it with sql statment? And How i do this to the all Row ??
VB.NET:
Dim dbFileNew As String = "C:\Dest.mdb"
Dim con As New OleDb.OleDbConnection("PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source =" & dbFileNew)
Dim strsql3 As String
strsql3 = "UPDATE [" & dbFileNew & "].Sniff_1fix Need the correct Statment"
Dim cmd As New OleDbCommand(strsql3, con)
con.Open()
cmd.ExecuteNonQuery()
con.Close()