oracle 資料庫的一些sql操作

2021-06-07 17:38:34 字數 1243 閱讀 1614

時間字段查詢的sql語句:

select * from mycontent t where t.create_date <= to_date('2010-06-21','yyyy-mm-dd')

修改時間欄位的sql語句:

update mycontent t

set t.create_date = to_date('2012.05.28 13:10:45',

'yyyy-mm-dd hh24:mi:ss'),

t.modify_date = to_date('2012.05.28 13:10:45',

'yyyy-mm-dd hh24:mi:ss')

where t.content_id = '123456'

查詢鎖表情況的語句:

select sess.sid,

sess.serial#,

lo.oracle_username,

lo.os_user_name,

ao.object_name,

lo.locked_mode

from v$locked_object lo, dba_objects ao, v$session sess

where ao.object_id = lo.object_id

and lo.session_id = sess.sid;

查詢結果字串相加:

select * '' || t.content_id as mylink

from mycontent t

遞迴查詢顯示:

select replace(replace(replace(replace(replace(replace(replace(replace(replace(category_code,

'1',

'0'),

'2',

'0'),

'3',

'0'),

'4',

'0'),

'5',

'0'),

'6',

'0'),

'7',

'0'),

'8',

'0'),

'9',

'0') || c.category_name,

c.category_code

from mycategory c

where c.category_code like '001001%'

order by c.category_code

資料庫 資料庫sql一些操作

空關係 none 方法返回可以在鏈式呼叫中使用的 不包含任何記錄的空關係。在這個空關係上應用後續條件鏈,會繼續生成空關係。對於可能返回零結果 但又需要在鏈式呼叫中使用的方法或作用域,可以使用 none 方法來提供返回值。article.none 返回乙個空 relation 物件,而且不執行查詢 下...

SQL資料庫的一些操作

以 mysql為例 登陸 mysql u root p 建立乙個名為test lib的資料庫 create database test lib 刪除乙個名為test lib的資料庫 drop database test lib 選擇test lib資料庫 use test lib 新增乙個包含3列的...

Oracle資料庫的一些操作

如何備份oracle資料庫 md f db bak date 0,10 exp userid bszlhr bszlhr orcl 14 file f db bak date 0,10 bszlhr date 0,10 dmp log f db bak date 0,10 log bszlhr da...