If I have a table tb with some data, say:
A B
__|__
1 | 1
2 | 2
Is there a way to do a SELECT * FROM tb along with a select of a function, say SELECT NOW() and end up with something like:
1 | 1 | datetime
2 | 2 | datetime
Or if it’s any different, SELECT * FROM tb WHERE A=1 and SELECT NOW() to give
1 | 1 | datetime ?
Yes, like :-
Or :-