I have a mysql table clientipstat, 3 columns: barcode, statdate, count. I want to get the latest row for each barcode(1 result per unique barcode), like ... Read more
Withdata Software Released OraLobEditor 3.5
WITHDATA SOFTWARE has announced OraLobEditor 3.5, a tool that helps you edit Oracle LOB(CLOB,BLOB) data directly. OraLobEditor 3.5 add PDF View, add “Execute Sql from Command line”, improve logon form, improve “Check update”, and fix bug on “Execute from command ... Read more
Withdata Software Released SqlLobEditor 2.1
WITHDATA SOFTWARE has announced SqlLobEditor 2.1, a tool that helps you edit Sql Server LOB(text,ntext,image) data directly. SqlLobEditor 2.1 add PDF View, add “Execute Sql from Command line”, improve logon form, improve “Check update”, and fix bug on “Execute from ... Read more
Withdata Software Released MyLobEditor 1.9
WITHDATA SOFTWARE has announced MyLobEditor 1.9, a tool that helps you edit Mysql LOB(TEXT,BLOB) data directly. MyLobEditor 1.9 add PDF View, add “Execute Sql from Command line”, improve logon form, improve “Check update”, and fix bug on “Execute from command ... Read more
Withdata Software Released DB2LobEditor 1.7
WITHDATA SOFTWARE has announced DB2LobEditor 1.7, a tool that helps you edit DB2 LOB (BLOB, CLOB) data directly. DB2LobEditor 1.7 add PDF View, add “Execute Sql from Command line”, improve logon form, improve “Check update”, and fix bug on “Execute from command ... Read more
Withdata Software Released DBBlobEditor 5.1
WITHDATA SOFTWARE has announced DBBlobEditor 5.1, a tool that helps you edit Database LOB (BLOB, CLOB) data directly. DBBlobEditor 5.1 add “Execute from command line”, add “Execute Sql from Command line”, improve logon form and improve “Check ... Read more
How to generate a CREATE TABLE statement for a given table in Mysql
Just use SHOW CREATE TABLE SHOW CREATE TABLE my_table Related Post: How to generate a CREATE TABLE statement for a given table in SQL Server How to generate a CREATE TABLE statement for a given table in Oracle ... Read more
How to generate a CREATE TABLE statement for a given table in Oracle
select dbms_metadata.get_ddl('TABLE', 'the_table_name', 'the_schema_name') from dual Replace “the_table_name” and “the_schema_name” with yours. Related Post: How to generate a CREATE TABLE statement for a given table in SQL Server How to generate a CREATE TABLE statement ... Read more
How to generate a CREATE TABLE statement for a given table in SQL Server
declare @table varchar(100) set @table = 'my_table' -- set table name here declare @sql table(s varchar(1000), id int identity) -- create statement insert into @sql(s) values ('create table [' + @table + '] (') -- column list insert into @sql(s) select ' ['+column_name+'] ' + ... Read more
Withdata Software Released Withdata OracleToExcel 1.8
WITHDATA SOFTWARE has announced Withdata OracleToExcel 1.8, a data conversion tool that export Oracle data to Excel. Withdata OracleToExcel 1.8 add “Execute Sql from Command line”, add “Check Update” to menu,and fix “Execute update sql error”. Withdata ... Read more