Is there a way to retrieve user input for postgresql? I have done a search online and found that one can use:
select * from mytable where user_id = [parameter "Enter text question here"]
--or--
select * from mytable where user_id ~* '[parameter "Enter text question here"]'
However, when I type...
I am fairly new to PostgreSQL. I am in the process of converting a MySQL script to postgresql. The mysql script includes a line that reads:
INSERT INTO OVERLAY VALUES
(NULL,LAST_INSERT_ID(),'Grey Standard','basemap',1,'png','y',-1,0,NOW(),NOW()),
(NULL,LAST_INSERT_ID(),'Brown...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.