Database Queries

总计21条数据
TimeDurationTypeQuery
  
17:43:04.2183.4 msSELECTSELECT * FROM "global"."vw_user_login" WHERE "access_token"='c1glbS3oPWuii9fAd_nsZY9pK1ntZvhw'

17:43:04.2231.3 msSELECTSELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=5446

17:43:04.2260.4 msSELECTSELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_contact_statuses" WHERE "id"='2')

17:43:04.2270.4 msSELECTSELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_suppliers" WHERE "id"='718')

17:43:04.2270.2 msSELECTSELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=5446)

17:43:04.2280.2 msSELECTSELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_contact_statuses" WHERE "id"='2')

17:43:04.2280.2 msSELECTSELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_suppliers" WHERE "id"='718')

17:43:04.2290.2 msSELECTSELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=5446)

17:43:04.2534.9 msINSERTINSERT INTO "a57be577deb434"."tbl_contacts" ("contact_type", "user_status", "supplier_id", "name", "sex", "birth_date", "email", "department", "job_position", "telephone_area_code", "telephone", "telephone_extension_number", "description", "created_by", "mobile", "pinyin_shortcut", "pinyin1", "namecut1") VALUES ('2', 2, 718, 'a', 'M', NULL, '', '', '', '', '', '', '', 5446, '', 'a', 'a', 'a') RETURNING "id"

17:43:04.2591.0 msINSERTINSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\Contacts', 6126, 'a:31:{s:2:"id";i:6126;s:4:"name";s:1:"a";s:5:"email";s:0:"";s:15:"pinyin_shortcut";s:1:"a";s:3:"sex";s:1:"M";s:10:"birth_date";s:0:"";s:10:"department";s:0:"";s:12:"job_position";s:0:"";s:6:"mobile";s:0:"";s:9:"telephone";s:0:"";s:9:"client_id";N;s:11:"supplier_id";s:3:"718";s:10:"created_by";i:5446;s:10:"created_at";N;s:10:"updated_at";N;s:11:"user_status";s:1:"2";s:11:"description";s:0:"";s:12:"contact_type";s:1:"2";s:16:"contact_attitude";N;s:19:"telephone_area_code";s:0:"";s:26:"telephone_extension_number";s:0:"";s:10:"mp_open_id";N;s:7:"pinyin1";s:1:"a";s:7:"pinyin2";N;s:7:"pinyin3";N;s:7:"pinyin4";N;s:8:"namecut1";s:1:"a";s:8:"namecut2";N;s:8:"namecut3";N;s:8:"namecut4";N;s:10:"is_mp_bind";N;}', '', 5446, '124.64.23.198')

17:43:04.2600.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_suppliers" WHERE "id"='718'

17:43:04.2614.2 msSELECTSELECT d.nspname AS table_schema, c.relname AS table_name, a.attname AS column_name, t.typname AS data_type, a.attlen AS character_maximum_length, pg_catalog.col_description(c.oid, a.attnum) AS column_comment, a.atttypmod AS modifier, a.attnotnull = false AS is_nullable, CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default, coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) AS is_autoinc, array_to_string((select array_agg(enumlabel) from pg_enum where enumtypid=a.atttypid)::varchar[],',') as enum_values, CASE atttypid WHEN 21 /*int2*/ THEN 16 WHEN 23 /*int4*/ THEN 32 WHEN 20 /*int8*/ THEN 64 WHEN 1700 /*numeric*/ THEN CASE WHEN atttypmod = -1 THEN null ELSE ((atttypmod - 4) >> 16) & 65535 END WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/ WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/ ELSE null END AS numeric_precision, CASE WHEN atttypid IN (21, 23, 20) THEN 0 WHEN atttypid IN (1700) THEN CASE WHEN atttypmod = -1 THEN null ELSE (atttypmod - 4) & 65535 END ELSE null END AS numeric_scale, CAST( information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t)) AS numeric ) AS size, a.attnum = any (ct.conkey) as is_pkey FROM pg_class c LEFT JOIN pg_attribute a ON a.attrelid = c.oid LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum LEFT JOIN pg_type t ON a.atttypid = t.oid LEFT JOIN pg_namespace d ON d.oid = c.relnamespace LEFT join pg_constraint ct on ct.conrelid=c.oid and ct.contype='p' WHERE a.attnum > 0 and t.typname != '' and c.relname = 'tbl_contact_mobiles' and d.nspname = 'a57be577deb434' ORDER BY a.attnum;

17:43:04.2656.0 msSELECTselect ct.conname as constraint_name, a.attname as column_name, fc.relname as foreign_table_name, fns.nspname as foreign_table_schema, fa.attname as foreign_column_name from (SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s FROM pg_constraint ct ) AS ct inner join pg_class c on c.oid=ct.conrelid inner join pg_namespace ns on c.relnamespace=ns.oid inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s] left join pg_class fc on fc.oid=ct.confrelid left join pg_namespace fns on fc.relnamespace=fns.oid left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s] where ct.contype='f' and c.relname='tbl_contact_mobiles' and ns.nspname='a57be577deb434' order by fns.nspname, fc.relname, a.attnum

17:43:04.2722.7 msINSERTINSERT INTO "a57be577deb434"."tbl_contact_mobiles" ("mobile", "contact_id") VALUES ('13333333333', 6126)

17:43:04.2740.3 msDELETEDELETE FROM "a57be577deb434"."tbl_contact_key_roles" WHERE contact_id = 6126

17:43:04.2750.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_contacts" WHERE "id"=6126

17:43:04.2761.2 msINSERTINSERT INTO "a57be577deb434"."tbl_object_change_logs" ("act", "attribute", "object_id", "object_type", "created_by", "created_at", "new_value", "old_value", "description") VALUES (1, 'create', 6126, 15, 5446, '2025-08-29 17:43:04', '{"mobiles":null,"operation_status":null,"keyword":"","from":"","to":"","period":"","unread":0}', '{"mobiles":null,"operation_status":null,"keyword":"","from":"","to":"","period":"","unread":0}', '{"d1":"\u5218\u5a1f","d2":"\u521b\u5efa\u4e86","d3":"\u8054\u7cfb\u4eba","d4":[]}') RETURNING "id"

17:43:04.2770.8 msINSERTINSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ObjectChangeLogs', 554485, 'a:13:{s:2:"id";i:554485;s:9:"object_id";i:6126;s:11:"object_type";i:15;s:9:"target_id";N;s:18:"target_object_type";N;s:3:"act";i:1;s:9:"attribute";s:6:"create";s:9:"old_value";s:94:"{"mobiles":null,"operation_status":null,"keyword":"","from":"","to":"","period":"","unread":0}";s:9:"new_value";s:94:"{"mobiles":null,"operation_status":null,"keyword":"","from":"","to":"","period":"","unread":0}";s:11:"description";s:81:"{"d1":"\u5218\u5a1f","d2":"\u521b\u5efa\u4e86","d3":"\u8054\u7cfb\u4eba","d4":[]}";s:10:"created_by";i:5446;s:10:"created_at";s:19:"2025-08-29 17:43:04";s:9:"is_delete";N;}', '', 5446, '124.64.23.198')

17:43:04.2780.8 msINSERTINSERT INTO "a57be577deb434"."tbl_object_change_logs" ("act", "attribute", "object_id", "object_type", "target_id", "target_object_type", "created_by", "new_value", "old_value", "description") VALUES (1, 'create', 718, 12, 6126, 15, 5446, '6126', '6126', '{"d1":"\u5218\u5a1f","d2":"\u521b\u5efa\u4e86","d3":"\u8054\u7cfb\u4eba","d4":["a"]}') RETURNING "id"

17:43:04.2790.8 msINSERTINSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ObjectChangeLogs', 554486, 'a:13:{s:2:"id";i:554486;s:9:"object_id";i:718;s:11:"object_type";i:12;s:9:"target_id";i:6126;s:18:"target_object_type";i:15;s:3:"act";i:1;s:9:"attribute";s:6:"create";s:9:"old_value";s:4:"6126";s:9:"new_value";s:4:"6126";s:11:"description";s:84:"{"d1":"\u5218\u5a1f","d2":"\u521b\u5efa\u4e86","d3":"\u8054\u7cfb\u4eba","d4":["a"]}";s:10:"created_by";i:5446;s:10:"created_at";N;s:9:"is_delete";N;}', '', 5446, '124.64.23.198')

17:43:04.2801.0 msINSERTINSERT INTO "global"."tbl_api_log" ("code", "schema", "user_id", "device_type", "version_code", "url", "request", "response", "php_error", "time") VALUES (200, 'a57be577deb434', 5446, 6, 169, 'v2/contact/save-new-for-supplier', '{"Contacts":{"supplier_id":"718","name":"a","sex":"M","birth_date":"","email":"","user_status":"2","contactAttitude":"","department":"","job_position":"","telephone_area_code":"","telephone":"","telephone_extension_number":"","description":"","mobiles":["13333333333"]},"posttime":"1756460584","access_token":"c1glbS3oPWuii9fAd_nsZY9pK1ntZvhw","device_type":"6","version_code":"169","token":"85c96beb36bceb0fd6f8bcd4abb171e5"}', '{"code":200,"data":{"id":6126},"status":1,"msg":[{"name":"success","success":"\u65b0\u8054\u7cfb\u4eba\u5df2\u521b\u5efa\u6210\u529f","error":""}]}', FALSE, '2025-08-29 17:43:04') RETURNING "id"