DataBase

create user cft identified by cft

grant connect,resource to cft;
grant create any sequence to cft;
gran ...

DataBase

操作コマンド

SQLiteDatabase db = this.getWritableDatabase();
db.beginTransaction();
db.delete(this.DAILY_EXAM ...

DataBase

db.execSQL(“CREATE TABLE IF NOT EXISTS “+LOCUS_OF_POINT+
” (_id INTEGER PRIMARY KEY,” +

DataBase

サンプルコード

date_sub(CURRENT_DATE(),interval 1 day)  昨日
date_sub(CURRENT_DATE(),interval -1 day)  明日
date_s ...

DataBase

1.直近1年データのレコードを取得
select * from table_name where column_name between (current_timestamp +’-1 years’) ...

DataBase

システム環境
CentOS 7 64位 MySQL 5.7

1.依存パッケージのインストール
#yum install -y gcc-c++ make cmake bison bison-devel ncu ...

DataBase

方法1
<update id=”updateBatch” parameterType=”Map”>
update aa set
a=#{fptm}, ...

DataBase

1.PRIMARY KEYの作成、削除
①PRIMARY KEYの作成
ALTER TABLE table ADD CONSTRAINT table_pkey PRIMARY KEY (field1, field2); ...

DataBase

SQLコマンド
ALTER TABLE “public”.”sys_user”
DROP CONSTRAINT “sys_user_pkey” , ...

DataBase

1.バックアップ
>mongodump -h dbhost -d dbname -o dbdirectory

# mongodump -h 127.0.0.1:27017 -d test -o/opt ...

DataBase

1.queryora.sql
SET NEWPAGE 0
SET SPACE 0
SET LINESIZE 80
SET PAGESIZE 0
SET ECHO OFF
SET FEED ...

DataBase

クライアント起動
#mongo

データベース作成
> use sampleDB
switched to db sampleDB

データベースの確認
db.stats() ...

DataBase

1.UNION集合演算子
SELECT column_name(s) FROM table_name1
UNION SELECT column_name(s) FROM table_name2

2.SQL ...

DataBase

MacPorts
$ sudo port install mongodb

Homebrew
$ brew install mongodb

/var/lib/mongodbを作成
$ su ...

DataBase

方法1
>use admin;
switched to db admin
>db.shutdownServer();
Tue Nov 18 11:03:24.164 DBClientCurs ...

DataBase

サンプルコード:
var h1 = 8, h2=16;
var ctm = “(function() {\n”
+” var hh = this.createdAt.getH ...

DataBase

1.UNION
2つtable以上のSELECT結果をまとめる
SELECT * FROM UNION SELECT * FROM ;

2.INTERSECT
2つtable以上のSELECT結果 ...

DataBase

サンプルコード

CREATE FUNCTION FUNCTION_DEAL(refcursor) RETURNS refcursor AS $$
declare r record;
ref refcurso ...