1.mysql
select table_name from information_schema.tables where table_schema='資料庫'
2.db2
select tabname as table_name from syscat.tables where tabschema=current schema
3.sqlserver
select name as table_name from sysobjects where xtype='u'
4.oracle
select table_name from user_tables where table_name like 'bcs_log_log_oss_%'"
資料庫 mysql如何獲取當前時間
1.1 獲得當前日期 時間 date time 函式 now 除了now 函式能獲得當前的日期時間外,mysql 中還有下面的函式 current timestamp current timestamp localtime localtime localtimestamp localtimestam...
資料庫 mysql如何獲取當前時間
1.1 獲得當前日期 時間 date time 函式 now 除了 now 函式能獲得當前的日期時間外,mysql 中還有下面的函式 current timestamp current timestamp localtime localtime localtimestamp localtimesta...
資料庫 基本資料操作
通用語法 insert into table name field1,field2,fieldn values value1,value2,valuen 例子 通用語法 select column name,column name from table name where clause 使用 wh...