मैं पोस्टग्रेज में टैब-सीमांकित फ़ाइल से डेटा खींचने के लिए psql "\ copy" कमांड का उपयोग करना चाहूंगा। मैं इस कमांड का उपयोग कर रहा हूं:
\copy cm_state from 'state.data' with delimiter '\t' null as ;
लेकिन मुझे यह चेतावनी मिल रही है (तालिका वास्तव में ठीक लोड होती है):
WARNING: nonstandard use of escape in a string literal
LINE 1: COPY cm_state FROM STDIN DELIMITER '\t' NULL AS ';'
HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
यदि 't' सही नहीं है तो मैं एक टैब कैसे निर्दिष्ट करूं?
\copy cm_state from 'state.data' with delimiter E'\t' null as ';'