Relative Content

Tag Archive for sqldatabasepostgresql

How do I write my SQL code on metabase with a “limit” table, without getting the “ERROR: syntax error at or near “limit”

WITH limit_data AS ( SELECT l.amount, l.account, l.type, l.created_at, c.seller_id, c.verifier_id FROM limit l LEFT JOIN customer c ON l.account = c.customer_id WHERE l.type IN (‘MPESA_PREDICTED’, ‘PROPOSED_KENYA_AGENT’, ‘MPESA_AUTO’, ‘MPESA_CHECKED’, ‘MANUAL’) ) I tried querying data from the limit table and customer table and I was expecting to get the type, created at, amount and the […]

after insert no está ingresando los datos

tengo un triger after insert el cual al dispararse ya debería tener los datos en la tabla pero me da error, ya que dentro del triger estoy haciendo una subconsulta que involucra la tabla asociada al triger que me devuelve null, a qué se debe esto?